Files
srcds_exporter/Dockerfile
2019-12-02 18:31:20 +01:00

7 lines
105 B
Docker

FROM alpine
RUN apk add --update nodejs npm
ADD . .
RUN npm install
CMD ["node", "index.js"]
EXPOSE 9591