Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 4 additions & 2 deletions Dockerfile
Original file line number Diff line number Diff line change
@@ -1,13 +1,15 @@
FROM golang:1.19-buster AS build
FROM golang:1.18-alpine AS build

WORKDIR /go/src/app
COPY ./ ./

RUN apk add build-base

RUN go get -d -v ./...
RUN go generate ./ent
RUN go build -v .

FROM golang:1.19-alpine
FROM golang:1.18-alpine

WORKDIR /go/src/app
COPY --from=build /go/src/app/back/views /go/src/app/back/views
Expand Down
7 changes: 0 additions & 7 deletions configs/server.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -34,10 +34,3 @@ ssikit:
custodianURL: localhost:7003
essifURL: localhost:7010

webauthn:
RPDisplayName: "Gaia-X AISBL"
RPID: "localhost"
RPOrigin: "http://localhost:3000"
AuthenticatorAttachment: "platform"
UserVerification: "required"