Last active
September 7, 2022 06:27
-
-
Save ricsiga/e8c35ba06715b86215a9da2613eafc28 to your computer and use it in GitHub Desktop.
Debian Squeeze Dockerfile example
This file contains 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 --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