1
0
mirror of https://git.sr.ht/~cadence/bibliogram synced 2024-09-21 04:57:29 +00:00
bibliogram/Dockerfile
2020-06-19 01:49:49 +12:00

8 lines
155 B
Docker

FROM node:12.18.1-alpine
RUN apk --no-cache add git python3 make g++
WORKDIR /app
COPY . .
RUN npm install --no-optional
EXPOSE 10407
CMD ["npm", "start"]