mirror of
https://github.com/codex-team/codex.docs.git
synced 2025-07-25 08:09:41 +02:00
12 lines
197 B
Text
12 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"]
|