11 lines
193 B
Text
11 lines
193 B
Text
|
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"]
|
||
|
|