build(docker): remove additional scripts
This commit is contained in:
parent
e13a05cb43
commit
de37fcddba
@ -34,15 +34,15 @@ RUN pip install --no-cache-dir -r requirements.txt
|
|||||||
COPY . ${CONTAINER_APP_ROOT}
|
COPY . ${CONTAINER_APP_ROOT}
|
||||||
|
|
||||||
# Install tools and keyring updates
|
# Install tools and keyring updates
|
||||||
RUN apt-get update && apt-get install -y --no-install-recommends \
|
#RUN apt-get update && apt-get install -y --no-install-recommends \
|
||||||
gnupg wget && \
|
# gnupg wget && \
|
||||||
apt-get install -y debian-keyring debian-archive-keyring && \
|
# apt-get install -y debian-keyring debian-archive-keyring && \
|
||||||
rm -rf /var/lib/apt/lists/*
|
# rm -rf /var/lib/apt/lists/*
|
||||||
|
|
||||||
# Install additional tools and create symbolic links
|
# Install additional tools and create symbolic links
|
||||||
RUN apt-get update && apt-get install -y netcat && \
|
#RUN apt-get update && apt-get install -y netcat && \
|
||||||
ln -s /bin/bash /usr/bin/bash && \
|
# ln -s /bin/bash /usr/bin/bash && \
|
||||||
rm -rf /var/lib/apt/lists/*
|
# rm -rf /var/lib/apt/lists/*
|
||||||
|
|
||||||
EXPOSE ${SERVICE_API_ACCESS_PORT}
|
EXPOSE ${SERVICE_API_ACCESS_PORT}
|
||||||
CMD ["uvicorn", "webapi.main:app", "--reload", "--port=${SERVICE_API_ACCESS_PORT}", "--host=${SERVICE_API_ACCESS_HOST}"]
|
CMD ["uvicorn", "webapi.main:app", "--reload", "--port=${SERVICE_API_ACCESS_PORT}", "--host=${SERVICE_API_ACCESS_HOST}"]
|
||||||
|
|||||||
Loading…
Reference in New Issue
Block a user