mirror of
https://github.com/hasura/graphql-engine.git
synced 2024-12-15 01:12:56 +03:00
20b2814a02
https://github.com/hasura/graphql-engine-mono/pull/1924 GitOrigin-RevId: dd402886e67a535aa90afa13f8d9714d92a5daf7
23 lines
1.0 KiB
Docker
23 lines
1.0 KiB
Docker
# NOTE!: If you update this file you need to:
|
|
#
|
|
# - take the hash of the new file with `sha256sum base.dockerfile`
|
|
# - update `&graphql_engine_base_image` in '.circleci/config.yml' with this new hash
|
|
# - update base image tag in 'server/packaging/build/Dockerfile' and 'pro/server/packaging/build/Dockerfile' with this new hash
|
|
|
|
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 default-libmysqlclient-dev default-mysql-client \
|
|
&& 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/
|