mirror of
https://github.com/codex-team/codex.docs.git
synced 2025-07-24 07:39:42 +02:00
13 lines
197 B
Text
13 lines
197 B
Text
|
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"]
|