mirror of
https://github.com/hasura/graphql-engine.git
synced 2025-01-05 22:34:22 +03:00
b6b1354a2b
https://github.com/hasura/graphql-engine-mono/pull/1578 GitOrigin-RevId: 97d793b42b029cd51a8a96699ca4a67f1463d349
10 lines
263 B
Docker
10 lines
263 B
Docker
FROM mcr.microsoft.com/mssql/server:2019-CU10-ubuntu-20.04
|
|
|
|
ENV ACCEPT_EULA=Y
|
|
ENV SA_PASSWORD=${MSSQL_PASSWORD:-hasuraMSSQL1}
|
|
|
|
USER root
|
|
RUN apt-get update && \
|
|
apt-get install -y mssql-tools && \
|
|
ln -sfn /opt/mssql-tools/bin/sqlcmd /usr/local/bin/sqlcmd
|