Ivann043/MHR_Clasification
0
1FROM python:3.10-slim2 3WORKDIR /code4 5COPY requirements.txt .6RUN pip install --no-cache-dir -r requirements.txt7 8COPY . .9 10EXPOSE 786011CMD ["python", "app.py"]12 1FROM python:3.10-slim2 3WORKDIR /code4 5COPY requirements.txt .6RUN pip install --no-cache-dir -r requirements.txt7 8COPY . .9 10EXPOSE 786011CMD ["python", "app.py"]12