diff --git a/Dockerfile b/Dockerfile new file mode 100644 index 0000000..78d0970 --- /dev/null +++ b/Dockerfile @@ -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"] \ No newline at end of file