nope
All checks were successful
continuous-integration/drone/push Build is passing

This commit is contained in:
2023-05-11 22:57:06 -04:00
parent f7f6dcae12
commit 95fdd8cf45

View File

@@ -4,13 +4,11 @@ ARG PORT=9001
## mongo build stage
FROM mongo:$MONGO_VERSION AS database
RUN apk update && apk add git
WORKDIR /
COPY mongo-init.js ./docker-entrypoint-initdb.d/
## stage one, build the service
FROM node:20-alpine AS build
RUN apk update && apk add git
ENV NODE_ENV development
WORKDIR /home/node/app
COPY package*.json ./