Skip to content

Commit 631af0e

Browse files
authored
Merge pull request #39 from internetee/docker-buster
Docker image move from Debian Wheezy to Debian Buster
2 parents 1647373 + c83dca3 commit 631af0e

3 files changed

Lines changed: 7 additions & 11 deletions

File tree

Dockerfile

Lines changed: 5 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -1,17 +1,14 @@
1-
FROM debian:wheezy
1+
FROM debian:buster-slim
22

33
SHELL ["/bin/bash", "-o", "pipefail", "-c"]
44
COPY ./docker/apt/sources.list /etc/apt/
55

6-
RUN apt-get update && apt-get -t wheezy install -y -qq wget \
6+
RUN apt-get update && apt-get -t buster install -y -qq wget \
77
&& apt-get clean \
88
&& rm -rf /var/lib/apt/lists/*
99

10-
COPY ./docker/apt/frexian.list /etc/apt/sources.list.d/
1110

12-
RUN wget http://deb.freexian.com/extended-lts/pool/main/f/freexian-archive-keyring/freexian-archive-keyring_2018.05.29_all.deb && dpkg -i freexian-archive-keyring_2018.05.29_all.deb
13-
14-
RUN apt-get update && apt-get -t wheezy-backports install -y -qq git \
11+
RUN apt-get update && apt-get -t buster-backports install -y -qq git \
1512
&& apt-get clean \
1613
&& rm -rf /var/lib/apt/lists/*
1714

@@ -25,15 +22,15 @@ RUN apt-get update && apt-get install -y \
2522
libssl-dev=* \
2623
libreadline-dev=* \
2724
libdpkg-perl=* \
28-
perl-modules=* \
2925
liberror-perl=* \
3026
libc6=* \
3127
libc-dev \
3228
perl=* \
3329
procps=* \
3430
inotify-tools=* \
35-
libssl1.0.0=* \
31+
libssl1.1=* \
3632
perl-base=* \
33+
zlib1g-dev \
3734
&& apt-get clean \
3835
&& rm -rf /var/lib/apt/lists/*
3936

docker/apt/frexian.list

Lines changed: 0 additions & 1 deletion
This file was deleted.

docker/apt/sources.list

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
1-
deb http://archive.debian.org/debian/ wheezy main contrib non-free
2-
deb http://archive.debian.org/debian/ wheezy-backports main contrib non-free
1+
deb http://deb.debian.org/debian/ buster main contrib non-free
2+
deb http://deb.debian.org/debian/ buster-backports main contrib non-free

0 commit comments

Comments
 (0)