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"]