Skip to content

Commit

Permalink
Add libssl1.0.0 to relase docker for backwards compatibility
Browse files Browse the repository at this point in the history
  • Loading branch information
rslota committed May 23, 2018
1 parent 1bf2af6 commit 4447287
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions Dockerfile.release
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
FROM debian:stretch-slim

# set locales
RUN apt-get update && DEBIAN_FRONTEND=noninteractive apt-get install -y locales
RUN apt-get update && DEBIAN_FRONTEND=noninteractive apt-get install --no-install-recommends -y locales
RUN sed -i -e 's/# en_US.UTF-8 UTF-8/en_US.UTF-8 UTF-8/' /etc/locale.gen && \
dpkg-reconfigure --frontend=noninteractive locales && \
update-locale LANG=en_US.UTF-8
Expand All @@ -11,12 +11,14 @@ ENV LANGUAGE en_US.UTF-8
ENV LC_ALL en_US.UTF-8

# required packages
RUN apt-get update && apt-get upgrade -y && apt-get install -y \
RUN echo 'deb http://deb.debian.org/debian jessie main' >> /etc/apt/sources.list
RUN apt-get update && apt-get upgrade -y && apt-get install --no-install-recommends -y \
bash \
bash-completion \
curl \
dnsutils \
libssl1.1 \
libssl1.0.0 \
vim && \
apt-get clean

Expand Down

0 comments on commit 4447287

Please sign in to comment.