mirror of
https://github.com/hasura/graphql-engine.git
synced 2024-12-16 18:42:30 +03:00
7d630e8147
GitOrigin-RevId: 51077f8b5d0c5bdf06a6560444f89d74a3660336
23 lines
805 B
Docker
23 lines
805 B
Docker
FROM debian:buster-20210511-slim
|
|
ENV LANG=C.UTF-8 LC_ALL=C.UTF-8
|
|
|
|
RUN apt-get update \
|
|
&& apt-get install -y gnupg2 curl apt-transport-https \
|
|
&& curl -s https://packages.microsoft.com/config/debian/9/prod.list > /etc/apt/sources.list.d/mssql-release.list \
|
|
&& curl -s https://packages.microsoft.com/keys/microsoft.asc | apt-key add - \
|
|
&& apt-get update \
|
|
&& ACCEPT_EULA=Y apt-get install -y ca-certificates libkrb5-3 libpq5 libnuma1 unixodbc-dev msodbcsql17 \
|
|
&& apt-get -y remove curl gnupg2 \
|
|
&& apt-get -y auto-remove \
|
|
&& apt-get -y clean \
|
|
&& rm -rf /var/lib/apt/lists/* \
|
|
&& rm -rf /usr/share/doc/ \
|
|
&& rm -rf /usr/share/man/ \
|
|
&& rm -rf /usr/share/locale/
|
|
|
|
COPY rootfs/graphql-engine /bin/
|
|
COPY rootfs/pg_dump /bin/
|
|
COPY rootfs/srv/ /srv/
|
|
|
|
CMD ["graphql-engine", "serve"]
|