Skip to content

Commit

Permalink
add jq and python bin to dockerfile (#1137)
Browse files Browse the repository at this point in the history
  • Loading branch information
jdx authored Dec 11, 2023
1 parent b62fed7 commit efe4be5
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion packaging/rtx/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,12 @@ WORKDIR /usr/src/rtx

COPY . /usr/src/rtx/

RUN cargo build --release
RUN cargo build --release \
&& ln -s /usr/bin/{python3,python} \
&& python -V \
&& apt-get update && apt-get install -y \
jq \
&& rm -rf /var/lib/apt/lists/* && apt-get clean

FROM rust as runtime

Expand Down

0 comments on commit efe4be5

Please sign in to comment.