Actual html serving
Signed-off-by: Martyn Ranyard <m@rtyn.berlin>
This commit is contained in:
parent
f84a6b819b
commit
5bc93ba132
|
@ -15,7 +15,6 @@ jobs:
|
||||||
run: |
|
run: |
|
||||||
mkdir $HOME/.kube
|
mkdir $HOME/.kube
|
||||||
echo "${{ secrets.KUBECONFIG_BUILDX }}" > $HOME/.kube/config
|
echo "${{ secrets.KUBECONFIG_BUILDX }}" > $HOME/.kube/config
|
||||||
cat $HOME/.kube/config
|
|
||||||
- name: Set up Docker Buildx
|
- name: Set up Docker Buildx
|
||||||
uses: docker/setup-buildx-action@v3.6.1
|
uses: docker/setup-buildx-action@v3.6.1
|
||||||
with:
|
with:
|
||||||
|
|
|
@ -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 -Lo /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/html/
|
||||||
|
|
||||||
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