Skip to content

Commit

Permalink
set rust version via arg in rathole dockerfile
Browse files Browse the repository at this point in the history
  • Loading branch information
shubham3121 committed Jul 30, 2024
1 parent ad2623e commit 8e5fdb0
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion packages/grid/rathole/rathole.dockerfile
Original file line number Diff line number Diff line change
@@ -1,7 +1,8 @@
ARG RATHOLE_VERSION="0.5.0"
ARG PYTHON_VERSION="3.12"
ARG RUST_VERSION="1.79"

FROM rust:1.79 as build
FROM rust:${RUST_VERSION} as build
ARG RATHOLE_VERSION
ARG FEATURES
RUN apt update && apt install -y git
Expand Down

0 comments on commit 8e5fdb0

Please sign in to comment.