Skip to content

Instantly share code, notes, and snippets.

@thefonso
Forked from ricsiga/squeeze.dockerfile
Created July 2, 2019 03:26
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save thefonso/d88596e4c48035800e1f111e7d5d1159 to your computer and use it in GitHub Desktop.
Save thefonso/d88596e4c48035800e1f111e7d5d1159 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 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