13 lines
No EOL
204 B
Docker
13 lines
No EOL
204 B
Docker
FROM python:3.14-slim
|
|
|
|
WORKDIR /app
|
|
|
|
# Install dependencies
|
|
COPY requirements.txt .
|
|
RUN pip install --no-cache-dir -r requirements.txt
|
|
|
|
# Copy script
|
|
COPY main.py .
|
|
|
|
# Run script
|
|
CMD ["python", "main.py"] |