Add a Dockerfile

This commit is contained in:
Prathamesh Musale 2024-07-15 14:06:52 +05:30
parent 6436ec1bb9
commit 1d7d022646

14
Dockerfile Normal file
View File

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