Skip to content

Instantly share code, notes, and snippets.

@zackproser
Created October 20, 2019 17:29
Show Gist options
  • Select an option

  • Save zackproser/63b49bb6233dcf236fa59a99fa61a3d8 to your computer and use it in GitHub Desktop.

Select an option

Save zackproser/63b49bb6233dcf236fa59a99fa61a3d8 to your computer and use it in GitHub Desktop.
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