Tochile/offensive
0
1FROM python:3.92WORKDIR /code3COPY requirements.txt .4RUN pip install --no-cache-dir -r requirements.txt5COPY . .6EXPOSE 78607CMD ["gunicorn", "app:app", "--bind", "0.0.0.0:7860"]8 1FROM python:3.92WORKDIR /code3COPY requirements.txt .4RUN pip install --no-cache-dir -r requirements.txt5COPY . .6EXPOSE 78607CMD ["gunicorn", "app:app", "--bind", "0.0.0.0:7860"]8