Skip to content

Commit

Permalink
fix: code
Browse files Browse the repository at this point in the history
  • Loading branch information
kallyas committed Aug 26, 2023
1 parent 4861e93 commit 60aee18
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion server/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -13,8 +13,11 @@ COPY server/package.json server/package-lock.json ./
# Install dependencies
RUN npm install --production

# Expose the port that your Node.js Express app listens on (e.g., 3000)
# Expose the port that your Node.js Express app listens on (e.g., 5000)
EXPOSE 5000

# Copy the rest of the code from ./server to the working directory /app
COPY server/ ./

# Start your Node.js server
CMD ["node", "$(find src -name 'index.js')"]

0 comments on commit 60aee18

Please sign in to comment.