use branch in docker build

This commit is contained in:
veeso
2022-01-05 13:38:10 +01:00
committed by Christian Visintin
parent 67d48e7a79
commit a25ee67cd3
4 changed files with 8 additions and 7 deletions

View File

@@ -1,5 +1,7 @@
FROM debian:stretch
ARG branch
ENV branch=$branch
WORKDIR /usr/src/
# Install dependencies
RUN apt update && apt install -y \
@@ -17,7 +19,7 @@ RUN curl --proto '=https' --tlsv1.2 -sSf https://sh.rustup.rs > /tmp/rust.sh &&
chmod +x /tmp/rust.sh && \
/tmp/rust.sh -y
# Clone repository
RUN git clone https://github.com/veeso/termscp.git
RUN git clone --branch $branch https://github.com/veeso/termscp.git
# Set workdir to termscp
WORKDIR /usr/src/termscp/
# Install cargo deb