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,12 +0,0 @@
FROM alpine:latest
WORKDIR /opt/
RUN apk add git python3
RUN git clone https://git.adrianux.net/ahoemann/Adrianux.net.git /opt
RUN python3 -m venv /opt/.venv
RUN /opt/.venv/bin/pip install -r requirements.txt
RUN apk del git
EXPOSE 8080
CMD [ "/opt/.venv/bin/waitress-serve", "--listen=0.0.0.0:8080", "app:app" ]