Created
April 16, 2019 18:39
-
-
Save iqan/8525770dbc211eba5147fd3370d6166a to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| FROM microsoft/mssql-server-linux | |
| RUN mkdir /work | |
| COPY CreateDb.sql /work | |
| COPY db.sh /work | |
| COPY db.bak /work | |
| WORKDIR /work | |
| RUN chmod 755 db.sh | |
| RUN ./db.sh CreateDb.sql |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment