All checks were successful
Build and Push Docker Image / build-and-push (push) Successful in 2m55s
5 lines
125 B
Docker
5 lines
125 B
Docker
FROM python:3.13.5-alpine3.22
|
|
COPY ./app /app
|
|
WORKDIR /app
|
|
RUN pip install -r requirements.txt
|
|
CMD ["python", "/app/main.py"] |