Update Dockerfile.multi

This commit is contained in:
Danny Avila 2023-07-27 16:50:33 -04:00 committed by GitHub
parent 2a6e000217
commit ba2e95db04
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -24,7 +24,7 @@ FROM base AS api-build
COPY --from=client-build /app/client/dist /app/client/dist
EXPOSE 3080
ENV HOST=0.0.0.0
CMD ["node", "NODE_ENV=production", "server/index.js"]
CMD ["node", "server/index.js"]
# Nginx setup
FROM nginx:1.21.1-alpine AS prod-stage