Skip to content

Instantly share code, notes, and snippets.

@ricsiga
Last active September 7, 2022 06:27
Show Gist options
  • Save ricsiga/e8c35ba06715b86215a9da2613eafc28 to your computer and use it in GitHub Desktop.
Save ricsiga/e8c35ba06715b86215a9da2613eafc28 to your computer and use it in GitHub Desktop.

Revisions

  1. ricsiga revised this gist Sep 7, 2022. 1 changed file with 2 additions and 2 deletions.
    4 changes: 2 additions & 2 deletions squeeze.dockerfile
    Original file line number Diff line number Diff line change
    @@ -5,6 +5,6 @@ RUN echo "deb http://archive.debian.org/debian squeeze-lts main" >> /etc/apt/sou
    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
    RUN apt-get install -y --force-yes procps vim nano tmux curl

    CMD ["/bin/bash"]
    CMD ["/bin/bash"]
  2. ricsiga renamed this gist Jan 3, 2018. 1 changed file with 0 additions and 0 deletions.
    File renamed without changes.
  3. ricsiga revised this gist Feb 14, 2017. 1 changed file with 1 addition and 1 deletion.
    2 changes: 1 addition & 1 deletion Dockerfile.example
    Original file line number Diff line number Diff line change
    @@ -5,6 +5,6 @@ RUN echo "deb http://archive.debian.org/debian squeeze-lts main" >> /etc/apt/sou
    RUN echo "Acquire::Check-Valid-Until false;" > /etc/apt/apt.conf

    RUN apt-get update
    RUN apt-get install -y procps vim nano tmux
    RUN apt-get install -y procps vim nano tmux curl

    CMD ["/bin/bash"]
  4. ricsiga created this gist Sep 30, 2016.
    10 changes: 10 additions & 0 deletions Dockerfile.example
    Original file line number Diff line number Diff line change
    @@ -0,0 +1,10 @@
    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

    CMD ["/bin/bash"]