Signed-off-by: Max Schmidt <max.schmidt@outlook.de>
This commit is contained in:
Max Schmidt
2023-05-13 19:10:37 +02:00
parent 43fc0a402c
commit 0dfad4431f
14 changed files with 136 additions and 52 deletions

27
payload/Dockerfile Normal file
View File

@ -0,0 +1,27 @@
FROM node:lts-alpine as base
WORKDIR /base
COPY ./package.json ./package.json
RUN yarn install
COPY ./ ./
FROM base AS dev
ENV NODE_ENV=development
EXPOSE 3001
CMD ["yarn","dev"]
FROM base AS build
ENV NODE_ENV=production
WORKDIR /build
COPY --from=base /base ./
RUN yarn build
FROM build as prod
ENV NODE_ENV=production
WORKDIR /prod
COPY package.json ./
RUN yarn install --production
COPY --from=buil /build/dist ./dist
COPY --from=buil /build/build ./build
EXPOSE 3000
CMD ["node", "dist/server.js"]