Skip to content

Commit

Permalink
Fix Dockerfile
Browse files Browse the repository at this point in the history
  • Loading branch information
Evil0ctal committed Feb 15, 2025
1 parent 3d25688 commit a054dd4
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -7,12 +7,12 @@ ENV DEBIAN_FRONTEND=noninteractive

# Update the package list and install Python and pip
RUN apt-get update && apt-get install -y --no-install-recommends \
python3.11 \
python3-pip \
python3.11-dev \
&& apt-get clean \
python3.11 python3-pip \
&& rm -rf /var/lib/apt/lists/*

# Upgrade pip to the latest version
RUN pip3 install -U pip

# Set a working directory
WORKDIR /app

Expand Down

0 comments on commit a054dd4

Please sign in to comment.