mirror of
https://github.com/stryan/gandi-live-dns.git
synced 2024-11-22 13:25:45 -05:00
12 lines
209 B
Docker
12 lines
209 B
Docker
FROM python:3.11-slim-buster
|
|
|
|
WORKDIR /app
|
|
|
|
COPY requirements.txt requirements.txt
|
|
RUN pip3 install -r requirements.txt
|
|
|
|
COPY src/gandi-live-dns.py .
|
|
COPY src/config.py .
|
|
|
|
CMD ["python3", "gandi-live-dns.py"]
|