File tree Expand file tree Collapse file tree 1 file changed +5
-8
lines changed
Expand file tree Collapse file tree 1 file changed +5
-8
lines changed Original file line number Diff line number Diff line change @@ -12,14 +12,11 @@ RUN locale-gen "en_US.UTF-8"
1212
1313RUN curl https://packages.microsoft.com/keys/microsoft.asc | apt-key add - \
1414 && curl https://packages.microsoft.com/config/ubuntu/16.04/prod.list | tee /etc/apt/sources.list.d/msprod.list \
15- && apt-get update
16-
17- RUN apt-get install -y mssql-tools unixodbc-dev
18-
19- RUN ln -sfn /opt/mssql-tools/bin/sqlcmd /usr/bin/sqlcmd \
20- && ln -sfn /opt/mssql-tools/bin/bcp /usr/bin/bcp
21-
22- RUN apt-get remove -y curl apt-transport-https \
15+ && apt-get update \
16+ && apt-get install -y mssql-tools unixodbc-dev \
17+ && ln -sfn /opt/mssql-tools/bin/sqlcmd /usr/bin/sqlcmd \
18+ && ln -sfn /opt/mssql-tools/bin/bcp /usr/bin/bcp \
19+ && apt-get remove -y curl apt-transport-https \
2320 && apt-get autoremove -y \
2421 && apt-get clean \
2522 && apt-get autoclean
You can’t perform that action at this time.
0 commit comments