laconic-faucet/Dockerfile

15 lines
183 B
Docker
Raw Normal View History

2024-07-15 08:36:52 +00:00
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 ["node", "dist/index.js"]