Spaces:
Sleeping
Sleeping
File size: 460 Bytes
f2e1fcb |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 |
FROM python:3.10-slim-buster
WORKDIR /app
COPY requirements.txt requirements.txt
# Criar ambiente virtual
RUN python -m venv venv
ENV PATH="/app/venv/bin:$PATH"
RUN apt-get update && \
apt-get install -y --no-install-recommends build-essential libffi-dev cmake libcurl4-openssl-dev && \
pip3 install --no-cache-dir -r requirements.txt
COPY . .
CMD ["python3", "./run.py"]
|