Skip to content

Commit

Permalink
Update Dockerfile
Browse files Browse the repository at this point in the history
Updated dockerfile to correct some errors in requirement.txt

# Upgrade pip, setuptools, and wheel
RUN pip3 install --upgrade pip setuptools wheel
RUN pip3 install --use-pep517 aiostream==0.4.3 --no-cache-dir --verbose
RUN pip3 install --use-pep517 -r requirements.txt --no-cache-dir --verbose
  • Loading branch information
wickedyoda committed Aug 15, 2024
1 parent c33b82e commit c79ffa0
Showing 1 changed file with 2 additions and 3 deletions.
5 changes: 2 additions & 3 deletions Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -48,13 +48,12 @@ RUN apk add --no-cache \

# Upgrade pip, setuptools, and wheel
RUN pip3 install --upgrade pip setuptools wheel
RUN pip3 install --use-pep517 aiostream==0.4.3 --no-cache-dir --verbose
RUN pip3 install --use-pep517 -r requirements.txt --no-cache-dir --verbose

# Install PyYAML with binary wheels only
RUN pip3 install PyYAML --only-binary :all:

# Install all Python modules from requirements.txt
RUN pip3 install -r requirements.txt --no-cache-dir --verbose

# Install SASS via gem
RUN gem install sass --verbose

Expand Down

0 comments on commit c79ffa0

Please sign in to comment.