fran1215/fastapi-test
0
1FROM python:3.112 3COPY requirements.txt /gateway/4WORKDIR /gateway5RUN pip install --no-cache-dir -r requirements.txt6 7COPY . /gateway/8 9EXPOSE 800010ENTRYPOINT ["uvicorn", "app:app", "--host=0.0.0.0", "--port=8000"]11 1FROM python:3.112 3COPY requirements.txt /gateway/4WORKDIR /gateway5RUN pip install --no-cache-dir -r requirements.txt6 7COPY . /gateway/8 9EXPOSE 800010ENTRYPOINT ["uvicorn", "app:app", "--host=0.0.0.0", "--port=8000"]11