mirror of
https://github.com/twentyhq/twenty.git
synced 2024-12-19 17:42:27 +03:00
10 lines
222 B
Docker
10 lines
222 B
Docker
FROM hasura/graphql-engine:latest as api
|
|
|
|
RUN apt-get update
|
|
RUN curl -L https://github.com/hasura/graphql-engine/raw/stable/cli/get.sh | bash
|
|
|
|
WORKDIR /app/hasura
|
|
COPY ./hasura .
|
|
|
|
CMD ["sh", "-c", "graphql-engine serve"]
|