Skip to content

Instantly share code, notes, and snippets.

View recepdmr's full-sized avatar
🏠
Working from home

. recepdmr

🏠
Working from home
View GitHub Profile
package main
import (
"crypto/sha256"
"fmt"
)
func main() {
h := sha256.New()
FROM alpine
RUN apk add --update jq curl && rm -rf /var/cache/apk/*
CMD ["date"]