13 lines
265 B
Docker
13 lines
265 B
Docker
|
|
FROM python:3.13-slim
|
||
|
|
|
||
|
|
# Installer requests une seule fois dans l'image
|
||
|
|
RUN python3 -m pip install --no-cache-dir requests
|
||
|
|
|
||
|
|
WORKDIR /app
|
||
|
|
|
||
|
|
# Copier le script Python
|
||
|
|
COPY couchdb-init.py /app/
|
||
|
|
|
||
|
|
# Lancer le script par défaut
|
||
|
|
ENTRYPOINT ["python3", "couchdb-init.py"]
|