upgrade ssh pod and fix download of zip
Signed-off-by: Martyn Ranyard <m@rtyn.berlin>
This commit is contained in:
parent
75a3eda123
commit
f84a6b819b
|
@ -1,4 +1,4 @@
|
||||||
FROM debian:12.7
|
FROM debian:12.8
|
||||||
|
|
||||||
RUN apt update && apt install vim tmux jq curl wget less git python3-pip openssh-server zsh dnsutils knot-dnsutils nmap -y
|
RUN apt update && apt install vim tmux jq curl wget less git python3-pip openssh-server zsh dnsutils knot-dnsutils nmap -y
|
||||||
RUN pip3 install yq --break-system-packages
|
RUN pip3 install yq --break-system-packages
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
FROM nginx AS builder
|
FROM nginx AS builder
|
||||||
RUN apt-get update && apt-get install -y unzip
|
RUN apt-get update && apt-get install -y unzip
|
||||||
RUN curl https://github.com/dchristl/macless-haystack/releases/download/v2.2.0/webapplication.zip -o /tmp/webapplication.zip && cd /tmp/ && unzip webapplication.zip && mv web/* /usr/share/nginx/
|
RUN curl https://github.com/dchristl/macless-haystack/releases/download/v2.2.0/webapplication.zip -Lo /tmp/webapplication.zip && cd /tmp/ && unzip webapplication.zip && mv web/* /usr/share/nginx/
|
||||||
|
|
||||||
FROM nginx
|
FROM nginx
|
||||||
COPY --from=builder /usr/share/nginx /usr/share/nginx
|
COPY --from=builder /usr/share/nginx /usr/share/nginx
|
||||||
|
|
Loading…
Reference in New Issue