Setup first hasura schema

This commit is contained in:
Charles Bochet
2023-04-13 18:12:33 +02:00
committed by Anders Borch
parent b9d1d80f64
commit 0445c03b51
26 changed files with 92 additions and 25 deletions

View File

@ -0,0 +1,9 @@
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"]