15 lines
267 B
Docker
15 lines
267 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 . .
|
|
|
|
COPY swagger-ui /home/booksystem/swagger-ui
|
|
|
|
EXPOSE 8000
|
|
|
|
CMD ["python", "main.py"]
|