Created
August 7, 2022 09:50
-
-
Save kamoljan/b771c5dbeb75f83141b6b121da4fe6b5 to your computer and use it in GitHub Desktop.
How to run mosql in Dockerfile
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 ruby:2.7 | |
RUN mkdir -p /usr/src/app | |
COPY job.sh /usr/src/app | |
COPY collection /usr/src/app/collection | |
WORKDIR /usr/src/app | |
RUN gem install mosql | |
CMD ["bash", "mosql.sh"] |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment