From 87f0ffc785132e3ac5c59f261633c60a8265e6dd Mon Sep 17 00:00:00 2001 From: Matthew Sevey <15232757+MSevey@users.noreply.github.com> Date: Tue, 2 Jul 2024 14:43:27 -0400 Subject: [PATCH] feat: add Dockerfile --- Dockerfile | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) create mode 100644 Dockerfile 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