Skip to content

Commit

Permalink
Merge pull request #1 from RxChin/testing
Browse files Browse the repository at this point in the history
Add something inside
  • Loading branch information
RxChin committed Sep 7, 2023
2 parents 390053e + 68410ce commit 922bd0f
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 922bd0f

Please sign in to comment.