Compare commits

...

2 Commits

Author SHA1 Message Date
vvzvlad
520416b772 fix warning 2024-09-05 03:20:57 +03:00
vvzvlad
3f17f7f0b7 fix url 2024-09-05 03:20:48 +03:00
2 changed files with 3 additions and 1 deletions

View File

@ -4,6 +4,8 @@ FROM amd64/python:3.9-buster as project_env
# Set the working directory in the container
WORKDIR /app
ENV FLASK_ENV=production
# Install dependencies
COPY requirements.txt requirements.txt
RUN pip install --upgrade pip setuptools \

View File

@ -6,7 +6,7 @@ services:
ports:
- "8080:8080"
healthcheck:
test: ["CMD", "curl", "-f", "http://localhost:8080/inference/ETH"]
test: ["CMD", "curl", "-f", "http://localhost:8080/inference/ETH/10m"]
interval: 10s
timeout: 5s
retries: 12