3d8a5b776a
Will be used by Gitlab CI/CD to auto build the image
10 lines
236 B
Docker
10 lines
236 B
Docker
# Generate Python Image
|
|
FROM python:3.10.8-slim-buster as builder
|
|
|
|
WORKDIR /app
|
|
|
|
# Copy only the required files over
|
|
COPY set_ip.sh cloudflare_script.py config.ini cloudflare.json ./
|
|
RUN ls -a /etc/systemd
|
|
|
|
#RUN pip install Cloudflare |