mirror of
https://github.com/luzifer-docker/jenkins.git
synced 2024-12-20 19:31:20 +00:00
Fix issue with not missing -y flag for apt
This commit is contained in:
parent
fb1916117f
commit
c933fe3423
1 changed files with 1 additions and 1 deletions
|
@ -1,7 +1,7 @@
|
||||||
FROM jenkins
|
FROM jenkins
|
||||||
USER root
|
USER root
|
||||||
|
|
||||||
RUN bash -c "if ! [ -e /usr/lib/apt/methods/https ]; then apt-get update && apt-get install apt-transport-https; fi"
|
RUN bash -c "if ! [ -e /usr/lib/apt/methods/https ]; then apt-get update && apt-get install -y apt-transport-https; fi"
|
||||||
|
|
||||||
RUN \
|
RUN \
|
||||||
apt-key adv --keyserver hkp://keyserver.ubuntu.com:80 --recv-keys 36A1D7869245C8950F966E92D8576A8BA88D21E9 && \
|
apt-key adv --keyserver hkp://keyserver.ubuntu.com:80 --recv-keys 36A1D7869245C8950F966E92D8576A8BA88D21E9 && \
|
||||||
|
|
Loading…
Reference in a new issue