test/custom-admin-ui #3

Merged
orion merged 673 commits from test/custom-admin-ui into master 2026-06-05 17:20:58 +08:00
Showing only changes of commit b3314f32d7 - Show all commits
+2 -4
View File
@@ -1,13 +1,11 @@
FROM python:3.9.5 FROM python:3.9.5
LABEL author="Lan" LABEL author="Lan"
LABEL email="vast@tom.com" LABEL email="vast@tom.com"
LABEL version="1.4.2" LABEL version="1.4.4"
COPY . /app COPY . /app
RUN ln -sf /usr/share/zoneinfo/Asia/Shanghai /etc/localtime
RUN echo 'Asia/Shanghai' >/etc/timezone
WORKDIR /app WORKDIR /app
RUN pip install -r requirements.txt RUN pip install -r requirements.txt
EXPOSE 12345 EXPOSE 12345
CMD ["uvicorn", "main:app", "--host", "0.0.0.0", "--port", "12345"] CMD ["python","main.py"]