add start entry test (#20)

This commit is contained in:
Dmitry Afanasyev
2023-09-29 15:29:06 +03:00
committed by GitHub
parent 90ec8ccec1
commit 52df4d338f
5 changed files with 83 additions and 29 deletions

View File

@@ -63,23 +63,3 @@ COPY --from=compile-image /app/.venv /app/.venv
USER ${USER}
ENV PATH="/app/.venv/bin:$PATH"
##===================== chat-service ================================
#FROM compile-image as chat-service
#
#RUN printf "================ Start build chat-service. with USER: ${USER} ==============="
#
#WORKDIR /app/
#
## Copying bot service
#COPY --chown=${USER}:${USER} ../chat_gpt_microservice /app/
#
#COPY --from=compile-image /app/.venv /app/.venv
#ENV PATH="/app/.venv/bin:$PATH"
#
#USER ${USER}
#
#RUN chmod -R 777 translations
#
#CMD ["python3", "./run.py"]