Skip to content

Commit

Permalink
add no cache flag
Browse files Browse the repository at this point in the history
  • Loading branch information
sgrtye committed Feb 6, 2024
1 parent fd174db commit dce1e5f
Show file tree
Hide file tree
Showing 6 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion apiserver/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ ENV TZ=Europe/London

COPY ./requirements.txt /requirements.txt
RUN pip install --upgrade pip
RUN pip install -r /requirements.txt
RUN pip install --no-cache-dir -r /requirements.txt

COPY ./main.py /main.py
CMD ["python", "-u", "main.py"]
2 changes: 1 addition & 1 deletion netguard/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ ENV TZ=Europe/London

COPY ./requirements.txt /requirements.txt
RUN pip install --upgrade pip
RUN pip install -r /requirements.txt
RUN pip install --no-cache-dir -r /requirements.txt

COPY ./main.py /main.py
CMD ["python", "-u", "main.py"]
2 changes: 1 addition & 1 deletion novel/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ ENV TZ=Europe/London

COPY ./requirements.txt /requirements.txt
RUN pip install --upgrade pip
RUN pip install -r /requirements.txt
RUN pip install --no-cache-dir -r /requirements.txt

RUN mkdir /novel
VOLUME /novel
Expand Down
2 changes: 1 addition & 1 deletion submanager/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ ENV TZ=Europe/London

COPY ./requirements.txt /requirements.txt
RUN pip install --upgrade pip
RUN pip install -r /requirements.txt
RUN pip install --no-cache-dir -r /requirements.txt

RUN mkdir /sub
VOLUME /sub
Expand Down
2 changes: 1 addition & 1 deletion telebot/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ RUN apk add gcc musl-dev linux-headers

COPY ./requirements.txt /requirements.txt
RUN pip install --upgrade pip
RUN pip install -r /requirements.txt
RUN pip install --no-cache-dir -r /requirements.txt

COPY ./main.py /main.py
CMD ["python", "-u", "main.py"]
2 changes: 1 addition & 1 deletion template/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ ENV TZ=Europe/London

COPY ./requirements.txt /requirements.txt
RUN pip install --upgrade pip
RUN pip install -r /requirements.txt
RUN pip install --no-cache-dir -r /requirements.txt

COPY ./main.py /main.py
CMD ["python", "-u", "main.py"]

0 comments on commit dce1e5f

Please sign in to comment.