-
-
Save thefonso/d88596e4c48035800e1f111e7d5d1159 to your computer and use it in GitHub Desktop.
Debian Squeeze Dockerfile example
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 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