1
0
Fork 0
mirror of https://github.com/codex-team/codex.docs.git synced 2025-07-18 20:59:42 +02:00
codex.docs/docker/Dockerfile.prod
Nikita Melnikov 8d9c19e595
Upgrade packages (#149)
* update babel, postcss and webpack

* update editor packages

* update linter packages
2022-03-06 11:38:59 +04:00

14 lines
212 B
Text

FROM node:16.14.0-alpine3.15
WORKDIR /usr/src/app
RUN apk add --no-cache git gcc g++ python3 make musl-dev
COPY package.json yarn.lock ./
RUN yarn install
COPY . .
RUN yarn compile
CMD ["yarn", "start:ts"]