Updated CloudFlare

This commit is contained in:
2023-07-30 21:04:44 +07:00
parent bd4a32e0ea
commit 1e4424dd76
297 changed files with 76641 additions and 7 deletions
@@ -0,0 +1,10 @@
FROM python:3.9-buster
WORKDIR /usr/src/install
RUN apt-get update
RUN apt-get install fping
# install gcloud api
RUN echo "deb [signed-by=/usr/share/keyrings/cloud.google.gpg] http://packages.cloud.google.com/apt cloud-sdk main" | tee -a /etc/apt/sources.list.d/google-cloud-sdk.list && curl https://packages.cloud.google.com/apt/doc/apt-key.gpg | apt-key --keyring /usr/share/keyrings/cloud.google.gpg add - && apt-get update -y && apt-get install google-cloud-cli -y
COPY requirements-dev.txt ./
RUN pip install --no-cache-dir -r requirements-dev.txt