Skip to content

Commit

Permalink
Here we go guys, Dockerfile problem (part 2)
Browse files Browse the repository at this point in the history
It is what it is, i gotta install rust inorder for armV6 to working
  • Loading branch information
mansuf committed Jun 5, 2024
1 parent fe44872 commit 691f7a5
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,10 @@ FROM python:3.11
COPY . /app
WORKDIR /app
RUN pip install --upgrade pip
RUN apt update && apt install wget
RUN wget https://sh.rustup.rs -O rustup.sh
RUN chmod +x ./rustup.sh
RUN ./rustup.sh
RUN pip install .[optional]

WORKDIR /downloads
Expand Down

0 comments on commit 691f7a5

Please sign in to comment.