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: |
|
||||
mkdir $HOME/.kube
|
||||
echo "${{ secrets.KUBECONFIG_BUILDX }}" > $HOME/.kube/config
|
||||
cat $HOME/.kube/config
|
||||
- name: Set up Docker Buildx
|
||||
uses: docker/setup-buildx-action@v3.6.1
|
||||
with:
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
FROM nginx AS builder
|
||||
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
|
||||
COPY --from=builder /usr/share/nginx /usr/share/nginx
|
||||
|
|
Loading…
Reference in New Issue