11 lines
184 B
Docker
11 lines
184 B
Docker
#FROM debian:buster
|
|
#RUN apt update && apt install -y nodejs npm
|
|
|
|
FROM alpine:3.9
|
|
RUN apk add --update --no-cache npm
|
|
|
|
ADD . /latex
|
|
WORKDIR /latex
|
|
RUN npm install
|
|
|
|
CMD ["npm", "start"] |