mirror of
https://github.com/toeverything/AFFiNE.git
synced 2024-12-23 20:32:04 +03:00
14 lines
248 B
Plaintext
14 lines
248 B
Plaintext
ARG BASE_IMAGE=localhost:5000/toeverything/relocate:latest
|
|
|
|
FROM ${BASE_IMAGE} as relocate
|
|
|
|
# =============
|
|
# AFFiNE image
|
|
# =============
|
|
FROM caddy:2.4.6-alpine as AFFiNE
|
|
WORKDIR /app
|
|
COPY --from=relocate /app .
|
|
|
|
EXPOSE 3000
|
|
CMD ["caddy", "run"]
|