Skip to content

Commit

Permalink
feat: add Dockerfile
Browse files Browse the repository at this point in the history
  • Loading branch information
MSevey committed Jul 2, 2024
1 parent 0bb37c6 commit 87f0ffc
Showing 1 changed file with 17 additions and 0 deletions.
17 changes: 17 additions & 0 deletions Dockerfile
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
# Use the official Node.js Alpine image as the base
FROM node:alpine

# Set the working directory inside the container
WORKDIR /app

# Copy the files to the container
COPY . .

# Install dependencies
RUN yarn

# Expose the port that the application will be running on
EXPOSE 3000

# Start the application
CMD ["yarn", "dev"]

0 comments on commit 87f0ffc

Please sign in to comment.