set new port

This commit is contained in:
2025-09-17 09:32:18 +03:00
parent 14fbcdb59e
commit 09fcf4ffb7
4 changed files with 7 additions and 7 deletions

View File

@@ -19,11 +19,11 @@ COPY client/ ./client/
RUN mkdir -p /app/uploads
ENV FLET_ENTRY=client/main.py \
APP_PORT=5000 \
APP_PORT=5555 \
API_BASE_URL=https://api.example.com
EXPOSE 5000
EXPOSE 5555
HEALTHCHECK --interval=30s --timeout=5s --retries=3 CMD curl -fsS http://localhost:5000/ || exit 1
HEALTHCHECK --interval=30s --timeout=5s --retries=3 CMD curl -fsS http://localhost:5555/ || exit 1
CMD ["python", "client/main.py"]