From e516cd46065600aac772ac187bf86ee36c40ebc9 Mon Sep 17 00:00:00 2001 From: Deon George Date: Thu, 16 May 2019 13:17:16 +1000 Subject: [PATCH] Removed backports for certbot --- .gitlab-ci.yml | 4 ++-- Dockerfile | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index 867c868..590be4a 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -3,10 +3,10 @@ stages: variables: CACHETAG: build-${VERSION} - DOCKER_HOST: tcp://${CI_REGISTRY}-leenooks-ci-docker:2375 + DOCKER_HOST: tcp://docker:2375 services: -- ${CI_REGISTRY}/leenooks/ci-docker:dind-${VERSION} +- docker:dind before_script: - docker info diff --git a/Dockerfile b/Dockerfile index bd47ff7..6eb1a02 100644 --- a/Dockerfile +++ b/Dockerfile @@ -6,7 +6,7 @@ COPY etc/nginx/default.d /etc/nginx/default.d COPY var/www/maintenance /var/www/maintenance RUN chmod 444 /etc/nginx/default.d/ssl/* && chmod 400 /etc/nginx/default.d/ssl/default.key /etc/nginx/default.d/ssl/dhparams.pem -RUN apt-get update && apt-get -t stretch-backports install certbot -yy \ +RUN apt-get update && apt-get install certbot -yy \ && rm -rf /var/lib/apt/lists/* /tmp/* #RUN cd /usr/local/sbin && \