mirror of
https://github.com/Sithranduil/srcds_exporter.git
synced 2025-07-22 14:28:27 +02:00
7 lines
105 B
Docker
7 lines
105 B
Docker
FROM alpine
|
|
RUN apk add --update nodejs npm
|
|
ADD . .
|
|
RUN npm install
|
|
|
|
CMD ["node", "index.js"]
|
|
EXPOSE 9591 |