infrastructure/app/build/webpull/Dockerfile.nodejs

10 lines
135 B
Docker
Raw Normal View History

2020-03-02 06:52:54 +00:00
FROM node:13.8-buster
RUN apt-get update && \
2020-04-21 10:38:15 +00:00
apt-get install -y git
2020-03-02 06:52:54 +00:00
COPY ./main /srv/httpd
WORKDIR /srv
CMD ["/srv/httpd"]