2025-09-28 16:57:03 -04:00
|
|
|
FROM python:3
|
|
|
|
|
|
|
|
|
|
WORKDIR /app
|
|
|
|
|
COPY requirements.txt requirements.txt
|
|
|
|
|
RUN pip install --no-cache-dir -r requirements.txt
|
|
|
|
|
COPY . .
|
|
|
|
|
|
2025-09-28 22:53:09 -04:00
|
|
|
EXPOSE 80
|
|
|
|
|
|
|
|
|
|
HEALTHCHECK --interval=10s --timeout=5s --retries=3 --start-period=10s \
|
|
|
|
|
CMD python healthcheck.py http://localhost/api/ || exit 1
|
|
|
|
|
|
|
|
|
|
CMD ["fastapi", "run", "main.py", "--port", "80", "--proxy-headers"]
|