Files
twenty/infra/dev/hasura/Dockerfile
2023-04-14 08:38:35 +02:00

12 lines
286 B
Docker

FROM hasura/graphql-engine:latest as api
RUN apt-get update
RUN apt-get install -y curl
RUN apt-get install -y socat
RUN apt-get install -y vim
RUN curl -L https://github.com/hasura/graphql-engine/raw/stable/cli/get.sh | bash
WORKDIR /hasura
CMD ["sh", "-c", "graphql-engine serve"]