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