Skip to content

Instantly share code, notes, and snippets.

@iqan
Created April 16, 2019 18:39
Show Gist options
  • Save iqan/8525770dbc211eba5147fd3370d6166a to your computer and use it in GitHub Desktop.
Save iqan/8525770dbc211eba5147fd3370d6166a to your computer and use it in GitHub Desktop.
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