mirror of
https://github.com/codex-team/codex.docs.git
synced 2025-07-18 20:59:42 +02:00
14 lines
212 B
Text
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"]
|