We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent b45c445 commit d6947aeCopy full SHA for d6947ae
.github/workflows/docker-base.yaml
@@ -15,6 +15,13 @@ on:
15
16
workflow_dispatch:
17
18
+permissions:
19
+ contents: read
20
+ # Necessary to push docker images to ghcr.io.
21
+ packages: write
22
+ # Necessary for depot.dev authentication.
23
+ id-token: write
24
+
25
# Avoid running multiple jobs for the same commit.
26
concurrency:
27
group: ${{ github.workflow }}-${{ github.ref }}-docker-base
Dockerfile renamed to scripts/Dockerfile
Dockerfile.base renamed to scripts/Dockerfile.base
scripts/build_docker.sh
@@ -112,8 +112,8 @@ fi
112
cdroot
113
temp_dir="$(TMPDIR="$(dirname "$input_file")" mktemp -d)"
114
ln "$input_file" "$temp_dir/coder"
115
-ln Dockerfile.base "$temp_dir/"
116
-ln Dockerfile "$temp_dir/"
+ln ./scripts/Dockerfile.base "$temp_dir/"
+ln ./scripts/Dockerfile "$temp_dir/"
117
118
cd "$temp_dir"
119
0 commit comments