blob: 9600f3598dae5aa3ccf88cf001327c3a4312fae2 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
|
FROM node:13.8-buster
RUN apt-get update && \
apt-get install -y git && \
npm install -g pug-cli jstransformer-markdown-it
COPY ./main /srv/httpd
WORKDIR /srv
CMD ["/srv/httpd"]
|