mirror of
https://github.com/twentyhq/twenty.git
synced 2024-12-18 17:12:53 +03:00
16 lines
359 B
Docker
16 lines
359 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
|
|
|
|
RUN mkdir entrypoints
|
|
COPY ./entrypoint.sh ./entrypoints/entrypoint.sh
|
|
|
|
ENTRYPOINT ["entrypoints/entrypoint.sh"]
|
|
|