Skip to content

Commit

Permalink
Update Dockerfile
Browse files Browse the repository at this point in the history
Remove dup entries and make corrections to install
  • Loading branch information
wickedyoda committed Aug 15, 2024
1 parent 8615890 commit 4680454
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -25,9 +25,7 @@ COPY ./backend/requirements.txt ./
RUN apk add --no-cache --virtual=build-dependencies \
g++ \
make \
postgresql-dev \
python3-dev \
libffi-dev \
ruby-dev

# Install necessary system libraries for Python packages
Expand All @@ -42,8 +40,10 @@ RUN apk add --no-cache \
openssl-dev \
nginx

# Install Python modules
# Upgrade pip, setuptools, and wheel
RUN pip3 install --upgrade pip setuptools wheel

# Install Python modules from requirements.txt
RUN pip3 install -r requirements.txt --verbose

# Install SASS via gem
Expand Down

0 comments on commit 4680454

Please sign in to comment.