2025-01-14 16:45:50 +00:00
|
|
|
FROM nginx AS builder
|
2025-01-14 17:09:37 +00:00
|
|
|
RUN apt-get update && apt-get install -y unzip
|
2025-01-14 17:23:19 +00:00
|
|
|
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/
|
2025-01-14 16:45:50 +00:00
|
|
|
|
|
|
|
FROM nginx
|
|
|
|
COPY --from=builder /usr/share/nginx /usr/share/nginx
|