mirror of
https://github.com/veeso/termscp.git
synced 2025-12-07 09:36:00 -08:00
use branch in docker build
This commit is contained in:
committed by
Christian Visintin
parent
67d48e7a79
commit
a25ee67cd3
4
dist/build/x86_64_debian9/Dockerfile
vendored
4
dist/build/x86_64_debian9/Dockerfile
vendored
@@ -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
|
||||
|
||||
Reference in New Issue
Block a user