We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents bcc2883 + f008f6c commit af7cf70Copy full SHA for af7cf70
.github/workflows/BuildImage.yml
@@ -11,7 +11,7 @@ jobs:
11
build:
12
runs-on: ubuntu-latest
13
steps:
14
- - uses: actions/checkout@v2.3.3
+ - uses: actions/checkout@v3.1.0
15
16
- name: Build image
17
run: |
Dockerfile
@@ -1,12 +1,16 @@
1
# Build container
2
-FROM golang:alpine AS buildstage
+FROM ghcr.io/linuxserver/baseimage-alpine:3.17 AS buildstage
3
4
ARG CLOUDFLARED_TAG
5
6
RUN mkdir -p /root-layer/cloudflared
7
WORKDIR /src
8
9
-RUN apk --no-cache add git build-base curl jq
+RUN \
10
+ apk add --no-cache \
+ build-base \
+ git \
+ go
ENV GO111MODULE=on \
CGO_ENABLED=0
0 commit comments