File tree 1 file changed +4
-4
lines changed
1 file changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -101,12 +101,12 @@ log "--- Building Docker image for $arch ($image_tag)"
101
101
# add the coder group and user. We have to do this in a separate step instead of
102
102
# using the RUN directive in the Dockerfile because you can't use RUN if you're
103
103
# building the image for a different architecture than the host.
104
- docker pull --platform " $arch " alpine:latest
104
+ docker pull --platform " $arch " alpine:latest 1>&2
105
105
106
106
temp_container_id=" $( docker create --platform " $arch " alpine:latest) "
107
- docker cp " $temp_container_id " :/etc/group ./group
108
- docker cp " $temp_container_id " :/etc/passwd ./passwd
109
- docker rm " $temp_container_id "
107
+ docker cp " $temp_container_id " :/etc/group ./group 1>&2
108
+ docker cp " $temp_container_id " :/etc/passwd ./passwd 1>&2
109
+ docker rm " $temp_container_id " 1>&2
110
110
111
111
echo " coder:x:1000:coder" >> ./group
112
112
echo " coder:x:1000:1000::/:/bin/sh" >> ./passwd
You can’t perform that action at this time.
0 commit comments