Skip to content

Commit 2fa9824

Browse files
committed
fail whenever one patch fail
1 parent 14f1b0e commit 2fa9824

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Dockerfile

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ FROM gitlab/gitlab-ee:$VERSION
33

44
ARG VERSION
55
COPY patches/${VERSION} /patches
6-
RUN for p in /patches/*; do patch -p0 < $p; done
6+
RUN set -e; for p in /patches/*; do patch -p0 < $p; done
77

88
COPY arc.tar.gz /opt/gitlab/embedded/service/gitlab-rails/vendor/project_templates/
99
COPY dataplant-arc.png house-solid.svg /opt/gitlab/embedded/service/gitlab-rails/public/assets/

0 commit comments

Comments
 (0)