From 8f3b93bd6a4bab01229fbcb44c3618fcf4d378ac Mon Sep 17 00:00:00 2001 From: Takuya Noguchi Date: Wed, 7 Apr 2021 07:13:00 +0000 Subject: [PATCH] Avoid to use libssl1.0-dev packages in Debian/Ubuntu distribution Signed-off-by: Takuya Noguchi --- Dockerfile.omnibus-gitlab-bionic | 2 +- Dockerfile.omnibus-gitlab-stretch | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/Dockerfile.omnibus-gitlab-bionic b/Dockerfile.omnibus-gitlab-bionic index f58df9c..45d9b09 100644 --- a/Dockerfile.omnibus-gitlab-bionic +++ b/Dockerfile.omnibus-gitlab-bionic @@ -1,7 +1,7 @@ FROM ubuntu:18.04 RUN apt-get update -q \ - && apt-get install -y g++ gcc git make curl zlib1g-dev libssl1.0-dev locales \ + && apt-get install -y g++ gcc git make curl zlib1g-dev libssl-dev locales \ && apt-get autoremove -yq \ && apt-get clean -yqq \ && rm -rf /var/lib/apt/lists/* diff --git a/Dockerfile.omnibus-gitlab-stretch b/Dockerfile.omnibus-gitlab-stretch index c3a7ea1..076638c 100644 --- a/Dockerfile.omnibus-gitlab-stretch +++ b/Dockerfile.omnibus-gitlab-stretch @@ -1,7 +1,7 @@ FROM debian:stretch RUN apt-get update -q \ - && apt-get install -y g++ gcc git make curl zlib1g-dev libssl1.0-dev locales \ + && apt-get install -y g++ gcc git make curl zlib1g-dev libssl-dev locales \ && apt-get autoremove -yq \ && apt-get clean -yqq \ && rm -rf /var/lib/apt/lists/*