mirror of
https://github.com/tomru/pdfer.git
synced 2026-03-02 22:17:18 +01:00
16 lines
250 B
Docker
16 lines
250 B
Docker
FROM node:14-alpine AS builder
|
|
MAINTAINER Thomas Ruoff <thomasruoff@gmail.com>
|
|
|
|
RUN apk add --no-cache texlive texmf-dist
|
|
|
|
USER 1000
|
|
|
|
COPY --chown=1000:1000 . /home/node
|
|
|
|
WORKDIR /home/node
|
|
RUN npm ci && npm run build
|
|
|
|
EXPOSE 3000
|
|
|
|
CMD npm run start
|