Files
PteroStats-HirziDevs-3/Dockerfile
2024-05-20 12:32:13 +02:00

11 lines
109 B
Docker

FROM node:20
WORKDIR /app
COPY . /app
# Perform clean install
RUN node index.js
CMD ["node", "index.js"]