Seaswimmer
7535d8bb03
All checks were successful
Docker Build / Build and Push Images (push) Successful in 35s
19 lines
426 B
Docker
19 lines
426 B
Docker
FROM python:3.12.4-alpine
|
|
|
|
WORKDIR /app
|
|
|
|
COPY src src
|
|
COPY README.md README.md
|
|
COPY requirements.txt requirements.txt
|
|
COPY LICENSE LICENSE
|
|
|
|
RUN apk add --no-cache curl
|
|
|
|
RUN python -m pip install --upgrade pip
|
|
RUN python -m pip install --no-cache-dir -r requirements.txt
|
|
|
|
CMD ["python", "src/main.py"]
|
|
|
|
HEALTHCHECK --interval=1m --timeout=30s --start-period=10s --retries=3 CMD curl -f http://localhost:80 || exit 1
|
|
|
|
EXPOSE 80
|