Oxygen99/Text-b
0
1FROM python:3.11-slim2 3WORKDIR /app4COPY . .5RUN pip install --no-cache-dir -r requirements.txt6 7CMD ["python", "run.py"]8 1FROM python:3.11-slim2 3WORKDIR /app4COPY . .5RUN pip install --no-cache-dir -r requirements.txt6 7CMD ["python", "run.py"]8