latex-wochenende/Dockerfile

8 lines
129 B
Docker

FROM debian:buster
RUN apt update && apt install -y nodejs npm
ADD . /latex
WORKDIR /latex
RUN npm install
CMD ["npm", "start"]