Change port in backend Dockerfiles
All checks were successful
continuous-integration/drone/push Build is passing

This commit is contained in:
2020-06-17 19:27:40 +02:00
parent 919ab2abac
commit c61c9657e2
2 changed files with 2 additions and 2 deletions

View File

@@ -10,6 +10,6 @@ FROM node:14.3.0-alpine
WORKDIR /app WORKDIR /app
COPY --from=builder /app . COPY --from=builder /app .
EXPOSE 3000 EXPOSE 3500
CMD ["npm", "run", "start:prod"] CMD ["npm", "run", "start:prod"]

View File

@@ -7,6 +7,6 @@ COPY package-lock.json .
RUN npm install RUN npm install
COPY . . COPY . .
EXPOSE 3000 EXPOSE 3500
CMD ["npm", "run", "start:${ENVIRONMENT}"] CMD ["npm", "run", "start:${ENVIRONMENT}"]