| FROM python:3.8 | |
| COPY requirements.txt . | |
| RUN pip install -r requirements.txt | |
| COPY . . | |
| EXPOSE 3000 | |
| CMD ["flask", "run", "--host=0.0.0.0", "--port=3000"] |
| FROM python:3.8 | |
| COPY requirements.txt . | |
| RUN pip install -r requirements.txt | |
| COPY . . | |
| EXPOSE 3000 | |
| CMD ["flask", "run", "--host=0.0.0.0", "--port=3000"] |