DJ-Goanna-Coding/oppo-node
0
1FROM python:3.92WORKDIR /code3COPY requirements.txt .4RUN pip install --no-cache-dir -r requirements.txt5COPY . .6CMD ["python", "app.py"]7 1FROM python:3.92WORKDIR /code3COPY requirements.txt .4RUN pip install --no-cache-dir -r requirements.txt5COPY . .6CMD ["python", "app.py"]7