mirror of
https://github.com/Sithranduil/srcds_exporter.git
synced 2025-07-23 17:28:00 +02:00
8 lines
165 B
Docker
8 lines
165 B
Docker
FROM node:current-alpine3.12
|
|
WORKDIR /data
|
|
RUN npm install --only=prod
|
|
RUN npm install nodemon -g
|
|
|
|
# CMD ["node", "index.js"]
|
|
CMD ["nodemon", "index.js"]
|
|
EXPOSE 9591 |