We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
0 parents commit 7c8303bCopy full SHA for 7c8303b
2 files changed
.github/workflows/build-push.yaml
@@ -0,0 +1,18 @@
1
+name: build-push
2
+
3
+on:
4
+ workflow_dispatch:
5
+ push:
6
+ branches:
7
+ - main
8
+ paths:
9
+ - Dockerfile
10
+ - .github/workflows/build-push.yaml
11
12
+jobs:
13
+ run:
14
+ uses: libops/.github/.github/workflows/build-push.yaml@main
15
+ permissions:
16
+ contents: read
17
+ packages: write
18
+ secrets: inherit
Dockerfile
@@ -0,0 +1,5 @@
+FROM gcr.io/google.com/cloudsdktool/google-cloud-cli:slim
+RUN apt-get update \
+ && apt-get install -y --no-install-recommends aptly createrepo-c gnupg ca-certificates \
+ && rm -rf /var/lib/apt/lists/*
0 commit comments