mirror of
https://github.com/hasura/graphql-engine.git
synced 2024-12-15 01:12:56 +03:00
281cb771ff
Co-authored-by: Rakesh Emmadi <12475069+rakeshkky@users.noreply.github.com> Co-authored-by: Antoine Leblanc <1618949+nicuveo@users.noreply.github.com> Co-authored-by: Vamshi Surabhi <6562944+0x777@users.noreply.github.com> Co-authored-by: Aravind K P <8335904+scriptonist@users.noreply.github.com> GitOrigin-RevId: 699c453b9692e1b822f393f23ff5e6db4e010d57
14 lines
648 B
Plaintext
14 lines
648 B
Plaintext
FROM hasura/haskell-docker-packager:20190731
|
|
MAINTAINER vamshi@hasura.io
|
|
|
|
RUN apt-get update && apt-get install -y libpq5 curl apt-transport-https upx \
|
|
&& 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 \
|
|
&& apt install -y unixodbc-dev freetds-dev \
|
|
&& ACCEPT_EULA=Y apt install --yes msodbcsql17 \
|
|
&& update-ca-certificates \
|
|
&& mkdir -p /usr/src/busybox/rootfs/etc/ssl/certs \
|
|
&& cp -L /etc/ssl/certs/* /usr/src/busybox/rootfs/etc/ssl/certs/ \
|
|
&& rm -rf /var/lib/apt/lists/*
|