Created
October 20, 2019 17:29
-
-
Save zackproser/63b49bb6233dcf236fa59a99fa61a3d8 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 ubuntu | |
| RUN apt-get update \ | |
| && apt-get dist-upgrade -y \ | |
| && apt-get install -y --no-install-recommends \ | |
| language-pack-en \ | |
| ca-certificates \ | |
| curl \ | |
| lsb-release \ | |
| && apt-get purge -y \ | |
| krb5-locales \ | |
| && apt-get clean -y \ | |
| && apt-get autoremove -y \ | |
| && rm -rf /tmp/* /var/tmp/* \ | |
| && rm -rf /var/lib/apt/lists/* | |
| COPY super_catfacts /super_catfacts | |
| COPY static static | |
| COPY data data | |
| COPY config.yml config.yml | |
| CMD ["/super_catfacts", "serve"] |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment