Skip to content

Commit

Permalink
added missing dependencies
Browse files Browse the repository at this point in the history
  • Loading branch information
ria-htkw committed Mar 30, 2024
1 parent 7b7cbed commit 688b781
Showing 1 changed file with 6 additions and 0 deletions.
6 changes: 6 additions & 0 deletions Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,12 @@ FROM python:3.10

WORKDIR /usr/src/app

# Update package list and install dependencies
RUN apt-get update && apt-get install -y \
wget \
tar \
&& rm -rf /var/lib/apt/lists/* \

# Install dependencies
COPY requirements.txt /usr/src/app/
RUN pip install --no-cache-dir -r requirements.txt
Expand Down

0 comments on commit 688b781

Please sign in to comment.