Skip to content

Commit

Permalink
update dependencies
Browse files Browse the repository at this point in the history
  • Loading branch information
avibn committed Dec 8, 2024
1 parent 56a9e00 commit 5d08b72
Showing 1 changed file with 13 additions and 1 deletion.
14 changes: 13 additions & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -7,8 +7,20 @@ WORKDIR /app
# Add current directory contents into the container at /app
ADD . /app

# Install system dependencies for cryptg
RUN apt-get update && apt-get install -y \
clang \
libjpeg-dev \
libwebp-dev \
python3-dev \
zlib1g-dev \
&& rm -rf /var/lib/apt/lists/*

# Upgrade setuptools
RUN pip install --upgrade setuptools

# Install packages from requirements.txt
RUN pip install --no-cache-dir -r requirements.txt

# Start the bot
CMD ["python", "run.py"]
CMD ["python", "run.py"]

0 comments on commit 5d08b72

Please sign in to comment.