Add dockerfile
Some checks failed
continuous-integration/drone Build is failing

This commit is contained in:
tobias 2024-06-05 22:25:53 +02:00
parent 9c0a8106fd
commit 2c9b786c9c
2 changed files with 31 additions and 1 deletions

View File

@ -13,7 +13,7 @@ steps:
# NOTE: edit this if you want your image called something else
repo: git.autonomic.zone/autonomic-cooperative/nextload-dev
context: payload
dockerfile: payload/Dockerfile
dockerfile: ./Dockerfile
target: dev
- name: publish payload prod container

30
Dockerfile Normal file
View File

@ -0,0 +1,30 @@
FROM node:lts as base
WORKDIR /base
COPY package.json yarn.lock ./
RUN yarn install --frozen-lockfile
COPY . .
FROM base AS dev
ENV NODE_ENV=development
EXPOSE 3001
CMD ["pnpm","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=build /build/tsconfig.json ./tsconfig.json
COPY --from=build /build/dist ./dist
COPY --from=build /build/build ./build
EXPOSE 3000
COPY docker-entrypoint.sh /docker-entrypoint.sh
ENTRYPOINT ["/docker-entrypoint.sh"]
CMD ["pnpm", "serve"]