Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 1 You must be signed in to fork a gist
  • Save Yggdrasil/522aed9ddfaaff46b261712f1f9651f6 to your computer and use it in GitHub Desktop.
Save Yggdrasil/522aed9ddfaaff46b261712f1f9651f6 to your computer and use it in GitHub Desktop.
Dockerfile docker build speedup
############################################################
# Speedup DPKG and don't use cache for packages
############################################################
# Taken from here: https://gist.github.com/kwk/55bb5b6a4b7457bef38d
#
# this forces dpkg not to call sync() after package extraction and speeds up
# install
RUN echo "force-unsafe-io" > /etc/dpkg/dpkg.cfg.d/02apt-speedup
#
# we don't need and apt cache in a container
RUN echo "Acquire::http {No-Cache=True;};" > /etc/apt/apt.conf.d/no-cache
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment