VM-Operator/spice-squid/Containerfile

12 lines
198 B
Text
Raw Permalink Normal View History

2024-04-10 11:14:32 +02:00
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