Update
All checks were successful
build-staging Build build-staging has succeeded

This commit is contained in:
Tom Alexander 2024-09-30 18:35:15 -04:00
parent 353007da52
commit de243379d1
Signed by: talexander
GPG Key ID: D3A179C9A53C0EDE
3 changed files with 3 additions and 3 deletions

View File

@ -216,7 +216,7 @@ spec:
- name: dockerconfig - name: dockerconfig
workspace: docker-credentials workspace: docker-credentials
runAfter: runAfter:
- report-pending # TODO: Change to a more specific runAfter - fetch-repository
- name: build-explorer-wasm - name: build-explorer-wasm
taskSpec: taskSpec:
metadata: {} metadata: {}

View File

@ -1,4 +1,4 @@
FROM rustlang/rust:nightly-alpine3.19 FROM rustlang/rust:nightly-alpine3.20
RUN apk add --no-cache musl-dev make bash RUN apk add --no-cache musl-dev make bash
RUN rustup target add wasm32-unknown-unknown RUN rustup target add wasm32-unknown-unknown

View File

@ -4,7 +4,7 @@ COPY . /source
RUN ls /source/ RUN ls /source/
RUN natter build --config /source/natter.toml RUN natter build --config /source/natter.toml
FROM alpine:3.19 AS server FROM alpine:3.20 AS server
RUN apk add --no-cache bash nginx RUN apk add --no-cache bash nginx
RUN addgroup web && adduser -D -G web web && install -d -D -o web -g web -m 700 /srv/http/public RUN addgroup web && adduser -D -G web web && install -d -D -o web -g web -m 700 /srv/http/public