infrastructure/docker/webpull/Dockerfile.nodejs
2020-04-21 12:38:15 +02:00

10 lines
135 B
Docker

FROM node:13.8-buster
RUN apt-get update && \
apt-get install -y git
COPY ./main /srv/httpd
WORKDIR /srv
CMD ["/srv/httpd"]