Skip to content

Commit 86acbd3

Browse files
committed
Configure default reconciliation strategy
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 <[email protected]>
1 parent 5c93484 commit 86acbd3

File tree

2 files changed

+3
-1
lines changed

2 files changed

+3
-1
lines changed

dockerfiles/alpine/Dockerfile

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -31,6 +31,7 @@ RUN git clone https://github.com/proxytunnel/proxytunnel.git && \
3131

3232
RUN git config --global user.email "git@localhost"
3333
RUN git config --global user.name "git"
34+
RUN git config --global pull.rebase "false"
3435

3536
ADD assets/ /opt/resource/
3637
RUN chmod +x /opt/resource/*

dockerfiles/ubuntu/Dockerfile

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
ARG base_image
1+
ARG base_image=ubuntu:bionic
22

33
FROM ${base_image} AS resource
44

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

3535
RUN git config --global user.email "git@localhost"
3636
RUN git config --global user.name "git"
37+
RUN git config --global pull.rebase "false"
3738

3839
ADD assets/ /opt/resource/
3940
RUN chmod +x /opt/resource/*

0 commit comments

Comments
 (0)