forked from cxykevin/sacn_accout_system
12 lines
172 B
Docker
12 lines
172 B
Docker
|
FROM python:3.12-slim
|
||
|
|
||
|
COPY . /auth
|
||
|
|
||
|
WORKDIR /auth
|
||
|
|
||
|
RUN pip install -r requirements.txt -i https://pypi.tuna.tsinghua.edu.cn/simple
|
||
|
|
||
|
EXPOSE 8000
|
||
|
|
||
|
CMD ["python", "main.py"]
|