TypeGPT/bbox
0
1FROM python:3.9-slim2 3WORKDIR /code4 5COPY ./requirements.txt /code/requirements.txt6RUN pip install --no-cache-dir -r requirements.txt7 8COPY . /code/9 10CMD ["python", "app.py"]1FROM python:3.9-slim2 3WORKDIR /code4 5COPY ./requirements.txt /code/requirements.txt6RUN pip install --no-cache-dir -r requirements.txt7 8COPY . /code/9 10CMD ["python", "app.py"]