Created
September 3, 2019 07:18
-
-
Save giang-pham/07615746acd1e4891d77d1452d1a0fba to your computer and use it in GitHub Desktop.
This file contains 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 alpine:3.10 | |
RUN mkdir /opt/output && \ | |
apk add --no-cache curl jq | |
ADD extract_report_count.sh /opt/run.sh | |
RUN chmod +x /opt/run.sh | |
ADD resources /opt/resources | |
WORKDIR /opt | |
ENTRYPOINT ["/opt/run.sh"] |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment