From 1d7d02264630a538025ec1da35a32ce229d40d56 Mon Sep 17 00:00:00 2001 From: Prathamesh Musale Date: Mon, 15 Jul 2024 14:06:52 +0530 Subject: [PATCH] Add a Dockerfile --- Dockerfile | 14 ++++++++++++++ 1 file changed, 14 insertions(+) create mode 100644 Dockerfile diff --git a/Dockerfile b/Dockerfile new file mode 100644 index 0000000..098d910 --- /dev/null +++ b/Dockerfile @@ -0,0 +1,14 @@ +FROM node:20-bullseye + +WORKDIR /app + +# Copy the application code +COPY . . + +RUN yarn && yarn build + +# Expose the required port +EXPOSE 3000 + +# Run the app +CMD ["yarn", "start-faucet"]