Skip to content

Instantly share code, notes, and snippets.

@ricsiga
Last active September 7, 2022 06:27
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 2 You must be signed in to fork a gist
  • Save ricsiga/e8c35ba06715b86215a9da2613eafc28 to your computer and use it in GitHub Desktop.
Save ricsiga/e8c35ba06715b86215a9da2613eafc28 to your computer and use it in GitHub Desktop.
Debian Squeeze Dockerfile example
FROM debian:squeeze
RUN echo "deb http://archive.debian.org/debian squeeze main" > /etc/apt/sources.list
RUN echo "deb http://archive.debian.org/debian squeeze-lts main" >> /etc/apt/sources.list
RUN echo "Acquire::Check-Valid-Until false;" > /etc/apt/apt.conf
RUN apt-get update
RUN apt-get install -y --force-yes procps vim nano tmux curl
CMD ["/bin/bash"]
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment