fix typo in dockerfiles
continuous-integration/drone/push Build is failing Details

This commit is contained in:
Robert Kaussow 2019-09-23 12:57:01 +02:00
parent 893f796a5a
commit c00cd46551
5 changed files with 4 additions and 21 deletions

View File

@ -67,7 +67,6 @@ local PipelineNotifications(depends_on=[]) = {
'refs/heads/master', 'refs/heads/master',
'refs/tags/**', 'refs/tags/**',
], ],
status: [ "success" ],
}, },
}, },
{ {
@ -87,7 +86,6 @@ local PipelineNotifications(depends_on=[]) = {
'refs/heads/master', 'refs/heads/master',
'refs/tags/**', 'refs/tags/**',
], ],
status: [ "success" ],
}, },
}, },
{ {
@ -98,7 +96,6 @@ local PipelineNotifications(depends_on=[]) = {
urls: { from_secret: "microbadger_url" }, urls: { from_secret: "microbadger_url" },
}, },
when: { when: {
status: [ "success" ],
ref: [ ref: [
'refs/heads/master', 'refs/heads/master',
'refs/tags/**', 'refs/tags/**',
@ -125,9 +122,6 @@ local PipelineNotifications(depends_on=[]) = {
}, },
}, },
], ],
trigger: {
status: [ "success", "failure" ],
},
depends_on: depends_on, depends_on: depends_on,
}; };

View File

@ -177,8 +177,6 @@ steps:
ref: ref:
- refs/heads/master - refs/heads/master
- "refs/tags/**" - "refs/tags/**"
status:
- success
- name: readme - name: readme
pull: always pull: always
@ -196,8 +194,6 @@ steps:
ref: ref:
- refs/heads/master - refs/heads/master
- "refs/tags/**" - "refs/tags/**"
status:
- success
- name: microbadger - name: microbadger
pull: always pull: always
@ -209,8 +205,6 @@ steps:
ref: ref:
- refs/heads/master - refs/heads/master
- "refs/tags/**" - "refs/tags/**"
status:
- success
- name: matrix - name: matrix
pull: always pull: always
@ -231,11 +225,6 @@ steps:
- success - success
- failure - failure
trigger:
status:
- success
- failure
depends_on: depends_on:
- gce-linux-amd64 - gce-linux-amd64
- ec2-linux-amd64 - ec2-linux-amd64
@ -244,6 +233,6 @@ depends_on:
--- ---
kind: signature kind: signature
hmac: b3f4b3b44346008810e90c80a6bf42cc3a3a40a6b55366fe8919039bedadabd7 hmac: d342ba3ba37c50e399140c367ac98635b4c0bd1b27f8ce453e09dceefd2e6e27
... ...

View File

@ -34,7 +34,7 @@ RUN \
&& pip install --upgrade pip \ && pip install --upgrade pip \
&& pip install --no-cache-dir ${PIP_PACKAGES} \ && pip install --no-cache-dir ${PIP_PACKAGES} \
&& rm -rf /root/.cache \ && rm -rf /root/.cache \
&& mkdir /root \ && mkdir /root
USER root USER root
ENTRYPOINT ["/docker-entrypoint.sh"] ENTRYPOINT ["/docker-entrypoint.sh"]

View File

@ -35,7 +35,7 @@ RUN \
&& pip install --upgrade pip \ && pip install --upgrade pip \
&& pip install --no-cache-dir ${PIP_PACKAGES} \ && pip install --no-cache-dir ${PIP_PACKAGES} \
&& rm -rf /root/.cache \ && rm -rf /root/.cache \
&& mkdir /root \ && mkdir /root
USER root USER root
ENTRYPOINT ["/docker-entrypoint.sh"] ENTRYPOINT ["/docker-entrypoint.sh"]

View File

@ -35,7 +35,7 @@ RUN \
&& pip install --upgrade pip \ && pip install --upgrade pip \
&& pip install --no-cache-dir ${PIP_PACKAGES} \ && pip install --no-cache-dir ${PIP_PACKAGES} \
&& rm -rf /root/.cache \ && rm -rf /root/.cache \
&& mkdir /root \ && mkdir /root
USER root USER root
ENTRYPOINT ["/docker-entrypoint.sh"] ENTRYPOINT ["/docker-entrypoint.sh"]