You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
10 lines
239 B
10 lines
239 B
3 years ago
|
# docker build -t ielpin.ru/logovo:latest .
|
||
|
FROM python:3.10.6-slim-buster
|
||
|
WORKDIR /code
|
||
|
|
||
|
COPY . /code/
|
||
|
|
||
|
RUN pip install --no-cache-dir --upgrade -r /code/requirements.txt
|
||
|
|
||
|
CMD ["uvicorn", "app:app", "--host", "0.0.0.0", "--port", "8000"]
|