This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Use an official Node runtime based on slim as a parent image | |
FROM node:20-slim | |
# Set the working directory to /app | |
WORKDIR /app | |
# Install curl and any other dependencies | |
RUN apt-get update \ | |
\ | |
&& apt-get install -y --no-install-recommends \ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
package main | |
import ( | |
"fmt" | |
"reflect" | |
"regexp" | |
"strings" | |
compose "github.com/compose-spec/compose-go/v2/types" | |
) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/usr/bin/env bash | |
set -e # Exit on error | |
ORG=DefangLabs | |
OWNER=$ORG | |
NEW_OWNER=DefangSamples | |
TOKEN=ghp_… # REPLACE | |
repos=$(curl -sL \ | |
-H "Accept: application/vnd.github+json" \ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
module github.com/DefangLabs/GoLicenseGuard/test | |
go 1.22.3 | |
require github.com/grafana/loki/v3 v3.0.0 | |
require ( | |
github.com/Azure/azure-sdk-for-go/sdk/azcore v1.10.0 // indirect | |
github.com/Azure/azure-sdk-for-go/sdk/azidentity v1.5.1 // indirect | |
github.com/Azure/azure-sdk-for-go/sdk/internal v1.5.2 // indirect |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
# Copyright 2024 Lionello Lunesu | |
# | |
# Permission is hereby granted, free of charge, to any person obtaining a copy of | |
# this software and associated documentation files (the “Software”), to deal in the | |
# Software without restriction, including without limitation the rights to use, copy, | |
# modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, | |
# and to permit persons to whom the Software is furnished to do so, subject to | |
# the following conditions: | |
# |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import * as tar from "tar-stream"; | |
import gunzip from "gunzip-maybe"; | |
import { pipeline } from "stream"; | |
import { promisify } from "util"; | |
const pipelineAsync = promisify(pipeline); | |
const dockerRegistryUrl = "https://registry-1.docker.io"; | |
const imageName = "library/ubuntu"; // Replace with your image name | |
const tag = "latest"; // or the specific tag you want to download |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
FROM alpine:3 as tini | |
# The is automatically set by docker buildx | |
ARG TARGETARCH | |
# From https://github.com/krallin/tini#signed-binaries | |
ENV TINI_VERSION v0.19.0 | |
ADD https://github.com/krallin/tini/releases/download/${TINI_VERSION}/tini-static-${TARGETARCH} /tini | |
ADD https://github.com/krallin/tini/releases/download/${TINI_VERSION}/tini-static-${TARGETARCH}.asc /tini.asc | |
RUN apk add --no-cache gnupg \ | |
&& gpg --batch --keyserver hkp://keyserver.ubuntu.com:80 --recv-keys 595E85A6B1B4779EA4DAAEC70B588DFF0527A9B7 \ | |
&& gpg --batch --verify /tini.asc /tini |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
package pkg | |
import ( | |
"crypto/ecdsa" | |
"crypto/elliptic" | |
"encoding/base64" | |
"errors" | |
"math/big" | |
) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/usr/bin/env python | |
import signal, subprocess, sys | |
signal.sigwait([signal.SIGTERM]) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
outputs = { self, nixpkgs, flake-utils }: | |
flake-utils.lib.eachDefaultSystem | |
(system: | |
let pkgs = nixpkgs.legacyPackages.${system}; in | |
{ | |
devShells.default = import ./shell.nix { inherit pkgs; }; | |
} | |
); | |
} |
NewerOlder