Merge pull request #574 from linuxserver/universal-cloudflared-rebase

rebase to lsio alpine 3.17 to fix builds
This commit is contained in:
aptalca
2023-02-04 15:10:10 -05:00
committed by GitHub
2 changed files with 7 additions and 3 deletions
+1 -1
View File
@@ -11,7 +11,7 @@ jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2.3.3
- uses: actions/checkout@v3.1.0
- name: Build image
run: |
+6 -2
View File
@@ -1,12 +1,16 @@
# Build container
FROM golang:alpine AS buildstage
FROM ghcr.io/linuxserver/baseimage-alpine:3.17 AS buildstage
ARG CLOUDFLARED_TAG
RUN mkdir -p /root-layer/cloudflared
WORKDIR /src
RUN apk --no-cache add git build-base curl jq
RUN \
apk add --no-cache \
build-base \
git \
go
ENV GO111MODULE=on \
CGO_ENABLED=0