This repository has been archived on 2023-03-15. You can view files and clone it, but cannot push or open issues or pull requests.
infrastructure/docker/webpull/Dockerfile.nodejs

10 lines
135 B
Text
Raw Normal View History

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