File tree Expand file tree Collapse file tree 1 file changed +6
-3
lines changed Expand file tree Collapse file tree 1 file changed +6
-3
lines changed Original file line number Diff line number Diff line change @@ -7,11 +7,14 @@ LABEL description="Run LinuxFr.org Ruby on Rails website"
7
7
WORKDIR /linuxfr.org
8
8
9
9
# Install system dependencies
10
- RUN echo 'deb http://deb.debian.org/debian stretch-backports main' >> '/etc/apt/sources.list.d/linuxfr.list' \
10
+ # Debian Stretch has been archived so we replace the sources with the archived ones
11
+ RUN echo 'deb http://archive.debian.org/debian stretch main' > '/etc/apt/sources.list' \
12
+ && echo 'deb http://archive.debian.org/debian stretch-proposed-updates main' >> '/etc/apt/sources.list' \
13
+ && echo 'deb http://archive.debian.org/debian stretch-backports main' >> '/etc/apt/sources.list.d/linuxfr.list' \
11
14
&& apt-get update \
12
- && apt-get install -y --no-install-recommends \
15
+ && apt-get install -y --no-install-recommends --allow-downgrades \
13
16
mysql-client libmysql++-dev git \
14
- build-essential openssl libreadline-dev curl libcurl4-openssl-dev zlib1g \
17
+ build-essential openssl libreadline-dev curl libcurl4-openssl-dev zlib1g=1:1.2.8.dfsg-5 \
15
18
zlib1g-dev libssl-dev libxml2-dev libxslt-dev autoconf libgmp-dev libyaml-dev \
16
19
ncurses-dev bison automake libtool imagemagick libc6-dev hunspell \
17
20
hunspell-fr-comprehensive ruby ruby-dev ruby-rack \
You can’t perform that action at this time.
0 commit comments