Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 4 additions & 4 deletions Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -60,9 +60,9 @@ RUN wget https://github.com/motis-project/pkg/releases/download/v0.22/pkg-linux-
chmod +x /opt/pkg

# INSTALL BUILDCACHE
RUN wget https://github.com/mbitsnbites/buildcache/releases/download/v0.28.2/buildcache-linux.tar.gz && \
tar xf buildcache-linux.tar.gz -C /opt && \
rm -rf buildcache-linux.tar.gz
RUN wget https://gitlab.com/bits-n-bites/buildcache/-/releases/v0.31.7/downloads/buildcache-linux-amd64.tar.gz && \
tar xf buildcache-linux-amd64.tar.gz -C /opt && \
rm -rf buildcache-linux-amd64.tar.gz

# ADD BUILD DEBUG TOOLS
RUN apt-get install -y --no-install-recommends tree
Expand All @@ -71,4 +71,4 @@ RUN apt-get install -y --no-install-recommends tree
RUN apt-get install -y --no-install-recommends bzip2

# CLEAN UP
RUN apt-get clean && rm -rf /var/lib/apt/lists/*
RUN apt-get clean && rm -rf /var/lib/apt/lists/*
Loading