FROM python:3.10-buster | |
WORKDIR /app/commandr-api-local | |
COPY . . | |
RUN pip3 install --upgrade pip | |
RUN pip3 install -r requirements.txt | |
CMD ["python", "app.py"] | |
FROM python:3.10-buster | |
WORKDIR /app/commandr-api-local | |
COPY . . | |
RUN pip3 install --upgrade pip | |
RUN pip3 install -r requirements.txt | |
CMD ["python", "app.py"] | |