Skip to content

Commit

Permalink
Configure default reconciliation strategy
Browse files Browse the repository at this point in the history
was failing for ubuntu demanding that a strategy be specified. alpine
was still fine, likely using an older git client still.

Signed-off-by: Taylor Silva <tsilva@pivotal.io>
  • Loading branch information
taylorsilva committed Oct 25, 2021
1 parent 5c93484 commit 86acbd3
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 1 deletion.
1 change: 1 addition & 0 deletions dockerfiles/alpine/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -31,6 +31,7 @@ RUN git clone https://github.com/proxytunnel/proxytunnel.git && \

RUN git config --global user.email "git@localhost"
RUN git config --global user.name "git"
RUN git config --global pull.rebase "false"

ADD assets/ /opt/resource/
RUN chmod +x /opt/resource/*
Expand Down
3 changes: 2 additions & 1 deletion dockerfiles/ubuntu/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
ARG base_image
ARG base_image=ubuntu:bionic

FROM ${base_image} AS resource

Expand Down Expand Up @@ -34,6 +34,7 @@ RUN git clone https://github.com/proxytunnel/proxytunnel.git && \

RUN git config --global user.email "git@localhost"
RUN git config --global user.name "git"
RUN git config --global pull.rebase "false"

ADD assets/ /opt/resource/
RUN chmod +x /opt/resource/*
Expand Down

0 comments on commit 86acbd3

Please sign in to comment.