Update nextcloud

This commit is contained in:
Amarpreet Minhas 2022-03-26 18:05:38 -04:00
parent bf75660da5
commit d09ea3c0e0
2 changed files with 3 additions and 3 deletions

View file

@ -1,4 +1,4 @@
FROM nextcloud:21.0.0-apache
FROM nextcloud:23.0-apache
# Copy masked.name root cert
COPY files/MaskedName_Root_CA.crt /usr/local/share/ca-certificates/MaskedName_Root_CA.crt

View file

@ -1,4 +1,4 @@
FROM golang:1.17-alpine3.14
FROM golang:alpine
RUN apk add --no-cache ca-certificates git && \
go install -tags 'postgres' github.com/golang-migrate/migrate/v4/cmd/migrate@latest && \
@ -6,7 +6,7 @@ RUN apk add --no-cache ca-certificates git && \
cd ${GOPATH}/src/git.minhas.io/asara && \
git clone https://git.minhas.io/asara/sudoscientist-go-backend && \
cd ${GOPATH}/src/git.minhas.io/asara/sudoscientist-go-backend && \
go mod init && go get && go build main.go && \
go mod init && go get && go build -o /go/bin/sudoscientist-go-backend main.go && \
mv /go/bin/* /usr/local/bin/ && \
rm -rf /go/src && \
apk del git