From be910d4c958e55f7f4c9462a1727d9379a047eff Mon Sep 17 00:00:00 2001 From: Zhenyu Sun Date: Sat, 22 Feb 2025 11:54:59 +0000 Subject: [PATCH] build(docker): remove useless scripts in Dockerfile --- apps/central_storage/Dockerfile | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/apps/central_storage/Dockerfile b/apps/central_storage/Dockerfile index 0f59f09..fd7d0cf 100644 --- a/apps/central_storage/Dockerfile +++ b/apps/central_storage/Dockerfile @@ -30,9 +30,9 @@ RUN pip install --no-cache-dir -r requirements.txt COPY . ${CONTAINER_APP_ROOT} -RUN apt update -RUN apt install -y netcat -RUN ln -s /bin/bash /usr/bin/bash +#RUN apt update +#RUN apt install -y netcat +#RUN ln -s /bin/bash /usr/bin/bash EXPOSE ${SERVICE_API_ACCESS_PORT} CMD ["uvicorn", "webapi.main:app", "--reload", "--port=${SERVICE_API_ACCESS_PORT}", "--host=${SERVICE_API_ACCESS_HOST}"]