Skip to content

Commit

Permalink
lint
Browse files Browse the repository at this point in the history
  • Loading branch information
piehld committed Jun 18, 2024
1 parent f6872be commit b6003f8
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -16,9 +16,9 @@ RUN apt-get update \
&& apt-get install -y build-essential=12.* pkg-config=1.8.* default-libmysqlclient-dev=1.1.*

# Install the required Python packages
RUN pip install --no-cache-dir --user -r /app/requirements.txt \
RUN pip install --no-cache-dir --upgrade "pip>=23.0.0" "setuptools>=40.8.0" "wheel>=0.43.0" \
&& pip install --no-cache-dir --user -r /app/requirements.txt \
&& pip install --no-cache-dir pymongo==3.12.0
# pip install --no-cache-dir --upgrade pip setuptools wheel \

# Specify the command to run on container start
# CMD ["python", "script.py"]

0 comments on commit b6003f8

Please sign in to comment.