13 lines
222 B
Docker
13 lines
222 B
Docker
FROM python:3.13-slim
|
|
|
|
WORKDIR /home/booksystem/auth
|
|
|
|
COPY requirements.txt .
|
|
RUN pip install --no-cache-dir -r requirements.txt -i https://mirrors.aliyun.com/pypi/simple/
|
|
|
|
COPY .. .
|
|
|
|
EXPOSE 8000
|
|
|
|
CMD ["python", "app.py"]
|