Added Dockerfile to repo
Will be used by Gitlab CI/CD to auto build the image
This commit is contained in:
parent
35571a68c1
commit
3d8a5b776a
1 changed files with 10 additions and 0 deletions
10
Dockerfile
Normal file
10
Dockerfile
Normal file
|
@ -0,0 +1,10 @@
|
|||
# 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
|
Loading…
Reference in a new issue