From 9f34293c05f26c81a2591a17b14e83b89b108d06 Mon Sep 17 00:00:00 2001 From: "kevin.zhang" Date: Thu, 9 May 2024 11:17:02 +0800 Subject: [PATCH] chore: rollback Dockerfile --- Dockerfile | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index 0148729e..74e282c4 100644 --- a/Dockerfile +++ b/Dockerfile @@ -34,9 +34,12 @@ RUN if [ "$IMAGE_TYPE" != "elite" ]; then \ fi +# Copy the rest of the application +COPY . /workspace + # Copy the rest of the application COPY . /workspace EXPOSE 9871 9872 9873 9874 9880 -CMD ["python", "api_v3.py"] +CMD ["python", "webui.py"]