2022-01-09 07:24:34 +00:00
|
|
|
FROM node:16 as builder
|
2021-08-08 04:21:44 +00:00
|
|
|
|
|
|
|
WORKDIR /app
|
|
|
|
|
2022-12-31 18:01:15 +00:00
|
|
|
COPY ./frontend .
|
2021-08-08 04:21:44 +00:00
|
|
|
|
|
|
|
RUN yarn install \
|
|
|
|
--prefer-offline \
|
|
|
|
--frozen-lockfile \
|
|
|
|
--non-interactive \
|
2022-12-31 18:01:15 +00:00
|
|
|
--production=false \
|
2021-10-02 20:18:01 +00:00
|
|
|
# https://github.com/docker/build-push-action/issues/471
|
|
|
|
--network-timeout 1000000
|
2022-12-31 18:01:15 +00:00
|
|
|
|
2021-08-08 04:21:44 +00:00
|
|
|
RUN yarn build
|
|
|
|
|
|
|
|
RUN rm -rf node_modules && \
|
|
|
|
NODE_ENV=production yarn install \
|
|
|
|
--prefer-offline \
|
|
|
|
--pure-lockfile \
|
|
|
|
--non-interactive \
|
|
|
|
--production=true
|
|
|
|
|
2022-01-09 07:24:34 +00:00
|
|
|
FROM node:16-alpine
|
2021-08-08 04:21:44 +00:00
|
|
|
|
2022-02-20 23:17:51 +00:00
|
|
|
RUN apk add caddy
|
|
|
|
|
2021-08-08 04:21:44 +00:00
|
|
|
WORKDIR /app
|
|
|
|
|
|
|
|
# copying caddy into image
|
|
|
|
COPY --from=builder /app .
|
2022-12-31 18:01:15 +00:00
|
|
|
COPY ./docker/frontend.Caddyfile /app/Caddyfile
|
|
|
|
COPY ./docker/frontend.entry.sh /app/run.sh
|
2021-08-08 04:21:44 +00:00
|
|
|
|
|
|
|
ENV HOST 0.0.0.0
|
|
|
|
EXPOSE 3000
|
|
|
|
|
2022-02-20 23:17:51 +00:00
|
|
|
RUN chmod +x /app/run.sh
|
|
|
|
ENTRYPOINT /app/run.sh
|