From 8cc5b2174ba52564cef6b3932bca17f513f0bc9a Mon Sep 17 00:00:00 2001 From: Juan Font Date: Mon, 14 Nov 2022 16:21:23 +0000 Subject: [PATCH] Remove Alpine Linux container --- .github/workflows/release.yml | 66 ----------------------------------- Dockerfile.alpine | 24 ------------- 2 files changed, 90 deletions(-) delete mode 100644 Dockerfile.alpine diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index a21a3b53..f5c21071 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -161,69 +161,3 @@ jobs: run: | rm -rf /tmp/.buildx-cache-debug mv /tmp/.buildx-cache-debug-new /tmp/.buildx-cache-debug - - docker-alpine-release: - runs-on: ubuntu-latest - steps: - - name: Checkout - uses: actions/checkout@v3 - with: - fetch-depth: 0 - - name: Set up Docker Buildx - uses: docker/setup-buildx-action@v1 - - name: Set up QEMU for multiple platforms - uses: docker/setup-qemu-action@master - with: - platforms: arm64,amd64 - - name: Cache Docker layers - uses: actions/cache@v2 - with: - path: /tmp/.buildx-cache-alpine - key: ${{ runner.os }}-buildx-alpine-${{ github.sha }} - restore-keys: | - ${{ runner.os }}-buildx-alpine- - - name: Docker meta - id: meta-alpine - uses: docker/metadata-action@v3 - with: - # list of Docker images to use as base name for tags - images: | - ${{ secrets.DOCKERHUB_USERNAME }}/headscale - ghcr.io/${{ github.repository_owner }}/headscale - flavor: | - latest=false - tags: | - type=semver,pattern={{version}}-alpine - type=semver,pattern={{major}}.{{minor}}-alpine - type=semver,pattern={{major}}-alpine - type=raw,value=latest-alpine - type=sha,suffix=-alpine - - name: Login to DockerHub - uses: docker/login-action@v1 - with: - username: ${{ secrets.DOCKERHUB_USERNAME }} - password: ${{ secrets.DOCKERHUB_TOKEN }} - - name: Login to GHCR - uses: docker/login-action@v1 - with: - registry: ghcr.io - username: ${{ github.repository_owner }} - password: ${{ secrets.GITHUB_TOKEN }} - - name: Build and push - id: docker_build - uses: docker/build-push-action@v2 - with: - push: true - context: . - file: Dockerfile.alpine - tags: ${{ steps.meta-alpine.outputs.tags }} - labels: ${{ steps.meta-alpine.outputs.labels }} - platforms: linux/amd64,linux/arm64 - cache-from: type=local,src=/tmp/.buildx-cache-alpine - cache-to: type=local,dest=/tmp/.buildx-cache-alpine-new - build-args: | - VERSION=${{ steps.meta-alpine.outputs.version }} - - name: Prepare cache for next build - run: | - rm -rf /tmp/.buildx-cache-alpine - mv /tmp/.buildx-cache-alpine-new /tmp/.buildx-cache-alpine diff --git a/Dockerfile.alpine b/Dockerfile.alpine deleted file mode 100644 index bc0800bb..00000000 --- a/Dockerfile.alpine +++ /dev/null @@ -1,24 +0,0 @@ -# Builder image -FROM docker.io/golang:1.19.0-alpine AS build -ARG VERSION=dev -ENV GOPATH /go -WORKDIR /go/src/headscale - -COPY go.mod go.sum /go/src/headscale/ -RUN apk add gcc musl-dev -RUN go mod download - -COPY . . - -RUN CGO_ENABLED=0 GOOS=linux go install -ldflags="-s -w -X github.com/juanfont/headscale/cmd/headscale/cli.Version=$VERSION" -a ./cmd/headscale -RUN strip /go/bin/headscale -RUN test -e /go/bin/headscale - -# Production image -FROM docker.io/alpine:latest - -COPY --from=build /go/bin/headscale /bin/headscale -ENV TZ UTC - -EXPOSE 8080/tcp -CMD ["headscale"]