mirror of
https://git.sr.ht/~cadence/bibliogram
synced 2024-11-22 08:07:30 +00:00
8 lines
155 B
Docker
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"]
|