add: added no cache option
All checks were successful
/ update (push) Successful in 0s

This commit is contained in:
ahoemann 2025-01-16 07:09:57 +00:00
parent b39983777b
commit b75e83c6c1

View file

@ -1,7 +1,7 @@
FROM alpine:latest FROM alpine:latest
WORKDIR /opt/ WORKDIR /opt/
RUN apk add git python3 RUN apk add --no-cache git python3
RUN git clone https://git.adrianux.net/ahoemann/Adrianux.net.git /opt RUN git clone https://git.adrianux.net/ahoemann/Adrianux.net.git /opt
RUN python3 -m venv /opt/.venv RUN python3 -m venv /opt/.venv
RUN /opt/.venv/bin/pip install -r requirements.txt RUN /opt/.venv/bin/pip install -r requirements.txt