Skip to content

Commit

Permalink
Add something inside
Browse files Browse the repository at this point in the history
  • Loading branch information
RxChin committed Sep 5, 2023
1 parent 3bb67d5 commit 68410ce
Show file tree
Hide file tree
Showing 3 changed files with 15,214 additions and 9,140 deletions.
23 changes: 23 additions & 0 deletions Dockerfile.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
# Use an official Node.js runtime as a parent image
FROM node:14

# Set the working directory in the container
WORKDIR /app

# Copy package.json and package-lock.json to the working directory
COPY package*.json ./

# Install application dependencies
RUN npm install

# Copy the rest of your application code to the container
COPY . .

ENV PORT=8080

# Expose a port (if your application listens on a specific port)
EXPOSE 8080

# Define the command to start your application
#CMD ["node", "app.js"]
CMD ["npm", "start"]
Loading

0 comments on commit 68410ce

Please sign in to comment.