platoo/Dockerfile

17 lines
170 B
Docker
Raw Permalink Normal View History

2020-05-19 18:15:03 +00:00
FROM debian:buster
RUN apt-get update && \
apt-get install -y nodejs npm
COPY . /srv/platoo
WORKDIR /srv/platoo
RUN npm install
CMD ["node", "index.js"]