VM-Operator/spice-squid/Containerfile

12 lines
208 B
Text
Raw Permalink Normal View History

FROM docker.io/alpine:3.19
2024-04-10 11:14:32 +02:00
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