2021-08-08 04:21:44 +00:00
|
|
|
FROM node:lts as builder
|
|
|
|
|
|
|
|
WORKDIR /app
|
|
|
|
|
|
|
|
COPY . .
|
|
|
|
|
|
|
|
RUN yarn install \
|
|
|
|
--prefer-offline \
|
|
|
|
--frozen-lockfile \
|
|
|
|
--non-interactive \
|
2021-10-02 20:18:01 +00:00
|
|
|
--production=false \
|
|
|
|
# https://github.com/docker/build-push-action/issues/471
|
|
|
|
--network-timeout 1000000
|
|
|
|
|
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
|
|
|
|
|
|
|
|
FROM node:15-alpine
|
|
|
|
|
|
|
|
WORKDIR /app
|
|
|
|
|
|
|
|
# copying caddy into image
|
|
|
|
COPY --from=builder /app .
|
|
|
|
|
|
|
|
ENV HOST 0.0.0.0
|
|
|
|
EXPOSE 3000
|
|
|
|
|
|
|
|
CMD [ "yarn", "start" ]
|