mirror of
https://github.com/Sithranduil/srcds_exporter.git
synced 2025-07-22 14:28:27 +02:00
8 lines
113 B
Docker
8 lines
113 B
Docker
FROM node:20-alpine
|
|
WORKDIR /data
|
|
COPY . /data
|
|
RUN npm install --only=prod
|
|
|
|
CMD ["node", "index.js"]
|
|
EXPOSE 9591
|