From de37fcddba6a36ad34c7a509426e9626dfcc913e Mon Sep 17 00:00:00 2001 From: Zhenyu Sun Date: Sat, 22 Feb 2025 11:40:23 +0000 Subject: [PATCH] build(docker): remove additional scripts --- apps/authentication/Dockerfile | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/apps/authentication/Dockerfile b/apps/authentication/Dockerfile index 9b05c5c..a586477 100644 --- a/apps/authentication/Dockerfile +++ b/apps/authentication/Dockerfile @@ -34,15 +34,15 @@ RUN pip install --no-cache-dir -r requirements.txt COPY . ${CONTAINER_APP_ROOT} # Install tools and keyring updates -RUN apt-get update && apt-get install -y --no-install-recommends \ - gnupg wget && \ - apt-get install -y debian-keyring debian-archive-keyring && \ - rm -rf /var/lib/apt/lists/* +#RUN apt-get update && apt-get install -y --no-install-recommends \ +# gnupg wget && \ +# apt-get install -y debian-keyring debian-archive-keyring && \ +# rm -rf /var/lib/apt/lists/* # Install additional tools and create symbolic links -RUN apt-get update && apt-get install -y netcat && \ - ln -s /bin/bash /usr/bin/bash && \ - rm -rf /var/lib/apt/lists/* +#RUN apt-get update && apt-get install -y netcat && \ +# ln -s /bin/bash /usr/bin/bash && \ +# rm -rf /var/lib/apt/lists/* EXPOSE ${SERVICE_API_ACCESS_PORT} CMD ["uvicorn", "webapi.main:app", "--reload", "--port=${SERVICE_API_ACCESS_PORT}", "--host=${SERVICE_API_ACCESS_HOST}"]