DesSolo

Results 5 comments of DesSolo

Hi, @jonsger Oncall use hmac auth. See tests https://github.com/linkedin/oncall/blob/master/test/test_auth.py#L50 Example client code: ``` python import json import time import hmac import base64 import hashlib import requests class Oncall: def __init__(self,...

@muayyad-alsadi Any news?)

https://github.com/sighupio/permission-manager/pull/182

I think it's worth using a multi-stage build

```Dockerfile FROM golang:1.21 as builder WORKDIR /build ADD . . # or create Makefile target like `make build-docker` RUN CGO_ENABLED=0 GOOS=linux GOARCH=amd64 go build -o spoof-dpi -ldflags="-s -w" cmd/spoof-dpi/main.go FROM...