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.
1 parent 22a8324 commit 7e48a28Copy full SHA for 7e48a28
compiler/build.sh
@@ -7,16 +7,12 @@ channels_to_build="${CHANNELS_TO_BUILD-stable beta nightly}"
7
repository=shepmaster
8
9
for channel in $channels_to_build; do
10
- cd "base"
11
-
12
image_name="rust-${channel}"
13
full_name="${repository}/${image_name}"
14
15
- docker build -t "${full_name}" \
+ docker build \
+ -t "${image_name}" \
+ -t "${full_name}" \
16
--build-arg channel="${channel}" \
17
- .
18
19
- docker tag "${full_name}" "${image_name}"
20
21
- cd ..
+ base
22
done
0 commit comments