twenty/infra/dev/hasura/Dockerfile

16 lines
359 B
Docker
Raw Normal View History

2023-04-12 16:08:27 +03:00
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
2023-04-13 19:12:33 +03:00
WORKDIR /hasura
2023-04-19 14:04:21 +03:00
RUN mkdir entrypoints
COPY ./entrypoint.sh ./entrypoints/entrypoint.sh
ENTRYPOINT ["entrypoints/entrypoint.sh"]