Experimental spice proxy provider.

This commit is contained in:
Michael Lipp 2024-04-10 11:14:32 +02:00
parent 383d1c5cca
commit 98f5c1e402
11 changed files with 154 additions and 0 deletions

11
spice-squid/Containerfile Normal file
View file

@ -0,0 +1,11 @@
FROM alpine:3.19
RUN apk update &&\
apk add --no-cache inotify-tools &&\
apk add --no-cache squid
COPY run.sh /usr/local/bin/run-squid.sh
CMD ["/usr/local/bin/run-squid.sh"]
EXPOSE 3128