Skip to content

Commit

Permalink
Here we go guys, Dockerfile problem (part 3)
Browse files Browse the repository at this point in the history
Forget about arm/v6 that sucks
  • Loading branch information
mansuf committed Jun 5, 2024
1 parent 6de4266 commit 8ef0a44
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 5 deletions.
1 change: 0 additions & 1 deletion .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,6 @@ jobs:
linux/amd64
linux/arm64
linux/arm/v7
linux/arm/v6
push: true
tags: |
${{ env.LATEST_TAG }}
Expand Down
8 changes: 4 additions & 4 deletions Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -3,10 +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 -q -y
# RUN apt update && apt install wget
# RUN wget https://sh.rustup.rs -O rustup.sh
# RUN chmod +x ./rustup.sh
# RUN ./rustup.sh -q -y
RUN pip install .[optional]

WORKDIR /downloads
Expand Down

0 comments on commit 8ef0a44

Please sign in to comment.