mirror of
https://github.com/hasura/graphql-engine.git
synced 2024-12-14 17:02:49 +03:00
23 lines
340 B
Docker
23 lines
340 B
Docker
|
# Used only for preview builds
|
||
|
|
||
|
FROM --platform=linux/amd64 node:17-alpine
|
||
|
|
||
|
ENV release_mode="staging"
|
||
|
|
||
|
ENV BUILD_VERSION="2.0"
|
||
|
|
||
|
RUN apk add --update git \
|
||
|
bash \
|
||
|
yarn
|
||
|
|
||
|
#WORKDIR /app
|
||
|
WORKDIR /graphql-engine/docs
|
||
|
|
||
|
# Bundle app source
|
||
|
COPY . .
|
||
|
|
||
|
RUN yarn
|
||
|
|
||
|
RUN yarn build
|
||
|
|
||
|
CMD ["yarn", "run", "serve", "-p", "8080", "--host", "0.0.0.0"]
|