mirror of
https://github.com/hasura/graphql-engine.git
synced 2025-01-05 14:27:59 +03:00
12 lines
258 B
Docker
12 lines
258 B
Docker
FROM hasura/graphql-engine:v1.0.0-alpha34
|
|
|
|
ENV HASURA_GRAPHQL_ENABLE_CONSOLE=true
|
|
|
|
COPY docker-entrypoint.sh /bin/
|
|
COPY cli-hasura-linux-amd64 /bin/hasura-cli
|
|
RUN chmod +x /bin/hasura-cli
|
|
|
|
ENTRYPOINT ["docker-entrypoint.sh"]
|
|
|
|
CMD ["graphql-engine", "serve"]
|