Init Python test
All checks were successful
Build and Push AI Image / build-and-push (push) Successful in 43s

This commit is contained in:
Zombori Péter
2025-12-03 13:13:42 +01:00
parent e7dc38b91e
commit 2220d6f7ca
8 changed files with 100 additions and 1 deletions

16
Dockerfile Normal file
View File

@@ -0,0 +1,16 @@
FROM python:3.11-slim
ENV DEBIAN_FRONTEND=noninteractive
RUN apt-get update && apt-get install -y --no-install-recommends \
curl \
&& rm -rf /var/lib/apt/lists/*
WORKDIR /app
COPY requirements.txt /app/requirements.txt
RUN pip install --no-cache-dir -r requirements.txt
COPY ai.py /app/ai.py
CMD ["python", "ai.py"]