1
0
forked from crony/UpFast

Added dockerbuild and .dockerignore

This commit is contained in:
CronyAkatsuki 2023-03-25 21:12:55 +01:00
parent e68a44e750
commit 69da6a8163
2 changed files with 17 additions and 0 deletions

4
.dockerignore Normal file
View File

@ -0,0 +1,4 @@
__pycache__
upload
venv
.git

13
Dockerfile Normal file
View File

@ -0,0 +1,13 @@
FROM python:3.10-alpine
WORKDIR /usr/src/app
COPY requirements.txt ./
RUN apk add --no-cache --update libmagic \
&& pip install --no-cache-dir --upgrade pip \
&& pip install --no-cache-dir -r requirements.txt
COPY . .
CMD ["uvicorn", "main:app", "--host", "0.0.0.0", "--port", "8000"]