#tradewind:update
This commit is contained in:
24
python/dockerfile
Normal file
24
python/dockerfile
Normal file
@ -0,0 +1,24 @@
|
||||
FROM python:3.9-alpine3.13 as build
|
||||
RUN sed -i 's/dl-cdn.alpinelinux.org/mirrors.tuna.tsinghua.edu.cn/g' /etc/apk/repositories \
|
||||
&& apk update \
|
||||
&& apk add git gcc g++ musl-dev libffi-dev libressl-dev make
|
||||
WORKDIR /install
|
||||
COPY requirements.txt /install/requirements.txt
|
||||
RUN pip install -i https://pypi.tuna.tsinghua.edu.cn/simple -r /install/requirements.txt \
|
||||
&& mkdir -p /install/lib/python3.9/site-packages \
|
||||
&& cp -rp /usr/local/lib/python3.9/site-packages /install/lib/python3.9 \
|
||||
&& cp -p /usr/local/bin/uvicorn /install/uvicorn
|
||||
|
||||
|
||||
FROM python:3.9-alpine3.13
|
||||
|
||||
# This hack is widely applied to avoid python printing issues in docker containers.
|
||||
# See: https://github.com/Docker-Hub-frolvlad/docker-alpine-python3/pull/13
|
||||
ENV PYTHONUNBUFFERED=1
|
||||
|
||||
COPY --from=build /install/lib /usr/local/lib
|
||||
COPY --from=build /install/uvicorn /usr/local/bin/uvicorn
|
||||
|
||||
WORKDIR /code
|
||||
|
||||
CMD ["uvicorn", "app.main:app", "--host", "0.0.0.0", "--port", "8000", "--reload"]
|
6
python/requirements.txt
Normal file
6
python/requirements.txt
Normal file
@ -0,0 +1,6 @@
|
||||
fastapi
|
||||
python-multipart
|
||||
python_jose[cryptography]
|
||||
SQLAlchemy[sqlite]
|
||||
uvicorn[standard]
|
||||
passlib[bcrypt]
|
Reference in New Issue
Block a user