1
0
Fork 0
mirror of https://github.com/codex-team/codex.docs.git synced 2025-07-24 07:39:42 +02:00
codex.docs/docker/Dockerfile.prod

13 lines
197 B
Text
Raw Normal View History

2020-11-23 14:09:33 +03:00
FROM node:12.14.1-alpine3.11
WORKDIR /usr/src/app
RUN apk add --no-cache git gcc g++ python make musl-dev
COPY package.json yarn.lock ./
RUN yarn install --prod
COPY . .
CMD ["yarn", "start"]