Pentesting-Agent-Zero / Dockerfile
ScottzillaSystems's picture
[CHIMERA] Fix Python 3.13 pydub issue - switch to Docker/Python 3.11
04cb0cc verified
raw
history blame contribute delete
343 Bytes
FROM python:3.11-slim
WORKDIR /app
RUN apt-get update && apt-get install -y curl && rm -rf /var/lib/apt/lists/*
COPY requirements.txt /app/requirements.txt
RUN pip install --no-cache-dir -r requirements.txt
COPY app.py /app/app.py
COPY README.md /app/README.md
RUN mkdir -p /app/workspace /app/data
EXPOSE 7860
CMD ["python", "app.py"]