Skip to content

Commit 6d8d0c7

Browse files
committed
Fix samson docker installation
1 parent 85b29ec commit 6d8d0c7

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

docker/samson-deployment/latest/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -151,7 +151,7 @@ ENV SQLITE_CLEANUP_DAYS=0
151151
# NGINX reverse proxy
152152
RUN export DEBIAN_FRONTEND=noninteractive && set -x \
153153
&& echo deb https://apt.dockerproject.org/repo debian-jessie main > /etc/apt/sources.list.d/docker.list \
154-
&& apt-key adv --keyserver hkp://pgp.mit.edu:80 --recv-keys 58118E89F3A912897C070ADBF76221572C52609D \
154+
&& curl -fsSL https://yum.dockerproject.org/gpg | sudo apt-key add - \
155155
&& /usr/local/bin/apt-install \
156156
# Install nginx
157157
nginx \

template/Dockerfile/images/samson-deployment.jinja2

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ ENV SQLITE_CLEANUP_DAYS=0
88
# NGINX reverse proxy
99
RUN export DEBIAN_FRONTEND=noninteractive && set -x \
1010
&& echo deb https://apt.dockerproject.org/repo debian-jessie main > /etc/apt/sources.list.d/docker.list \
11-
&& apt-key adv --keyserver hkp://pgp.mit.edu:80 --recv-keys 58118E89F3A912897C070ADBF76221572C52609D \
11+
&& curl -fsSL https://yum.dockerproject.org/gpg | sudo apt-key add - \
1212
&& /usr/local/bin/apt-install \
1313
# Install nginx
1414
nginx \

0 commit comments

Comments
 (0)