Skip to content

Commit

Permalink
Expoes ports in docker file
Browse files Browse the repository at this point in the history
  • Loading branch information
cheehongw committed Nov 14, 2023
1 parent b896233 commit 5213360
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 0 deletions.
1 change: 1 addition & 0 deletions code_execution/Dockerfile.prod
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,7 @@ WORKDIR /usr/src/app
COPY package*.json ./
RUN npm ci --only=production
COPY --from=builder /app/dist ./dist
EXPOSE 8090

# Command to run the application
CMD ["npm", "run", "serve"]
1 change: 1 addition & 0 deletions matching_service/Dockerfile.prod
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,7 @@ WORKDIR /usr/src/app
COPY package*.json ./
RUN npm ci --only=production
COPY --from=builder /app/dist ./dist
EXPOSE 8082

# Command to run the application
CMD ["npm", "run", "serve"]

0 comments on commit 5213360

Please sign in to comment.