fix typo for homeworks 13 directory

This commit is contained in:
2022-12-23 09:46:05 +07:00
parent b5268a1370
commit 2e7a604149
67 changed files with 9 additions and 9 deletions

View File

@@ -0,0 +1,14 @@
FROM python:3.9-buster
RUN mkdir /app && python -m pip install pipenv
WORKDIR /app
COPY Pipfile /app/Pipfile
COPY Pipfile.lock /app/Pipfile.lock
RUN pipenv install
COPY main.py /app/main.py
CMD pipenv run uvicorn main:app --reload --host 0.0.0.0 --port 9000