mirror of
https://github.com/toeverything/AFFiNE.git
synced 2026-07-11 07:06:28 +08:00
12 lines
183 B
Plaintext
12 lines
183 B
Plaintext
FROM relocate as relocate
|
|
|
|
# =============
|
|
# AFFiNE image
|
|
# =============
|
|
FROM caddy:2.4.6-alpine as AFFiNE
|
|
WORKDIR /app
|
|
COPY --from=relocate /app .
|
|
|
|
EXPOSE 3000
|
|
CMD ["caddy", "run"]
|