gg/Dockerfile
2020-05-20 10:41:18 +01:00

9 lines
139 B
Docker

FROM node:latest
WORKDIR /usr/src/app
COPY . .
RUN npm install
EXPOSE 5000
RUN apt update
RUN apt install htop
CMD [ "node", "server.js" ]