Skip to content

Instantly share code, notes, and snippets.

@apremalal
Created February 9, 2021 10:49
Show Gist options
  • Save apremalal/3284b8bb25996969ed222ac2ac0895e2 to your computer and use it in GitHub Desktop.
Save apremalal/3284b8bb25996969ed222ac2ac0895e2 to your computer and use it in GitHub Desktop.
golang sql-migrate
FROM golang:1.15.8
WORKDIR /app
RUN mkdir -p /app/resources/db/mysql
RUN go get -v github.com/rubenv/sql-migrate/...
RUN git clone https://github.com/vishnubob/wait-for-it.git
RUN chmod -R 777 /app/wait-for-it
RUN chmod +x /app/wait-for-it/wait-for-it.sh
EXPOSE 9090
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment