add mastodon

This commit is contained in:
ace 2021-02-10 02:28:20 +03:00
parent b923f6310b
commit 53135a82fe
No known key found for this signature in database
GPG Key ID: 2E47CC17BA7F8CF0
3 changed files with 22 additions and 1 deletions

View File

@ -1,4 +1,11 @@
FROM golang:1.15 as builder
COPY vapid.go /vapid.go
RUN go get -u github.com/SherClockHolmes/webpush-go
RUN CGO_ENABLED=0 go build -ldflags "-s -w" -o /vapid /vapid.go
FROM alpine:3.12
RUN apk add --no-cache openldap-passwd-pbkdf2 apache2-utils pwgen opendkim-utils coreutils
COPY dkim-key.sh /dkim-key.sh
COPY --from=builder /vapid /vapid
RUN chmod +x /vapid

View File

@ -1,6 +1,6 @@
VERSION=latest
IMAGE=pwgen
REGISTRY=registry.0xace.cc
REGISTRY=registry.0xace.cc/ghp
.PHONY: build push all

14
pwgen/vapid.go Normal file
View File

@ -0,0 +1,14 @@
package main
import (
webpush "github.com/SherClockHolmes/webpush-go"
)
func main() {
privateKey, publicKey, err := webpush.GenerateVAPIDKeys()
print("vapidPrivateKey: ", privateKey, "\n")
print("vapidPublicKey: ", publicKey, "\n")
if err != nil {
// TODO: Handle error
}
}