You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
IF [ "${base_image%:*}"="amazonlinux" ] && [ "$TARGETPLATFORM"="linux/arm64" ] # no amazonlinux:1 for arm64/UDC not supported atm for amazonlinux:2 on arm - skipping
21
+
RUN echo skipping $base_image with platform $TARGETPLATFORM
22
+
ELSE
23
+
FROM"$base_image"
24
+
# docker-compose will fail with:
25
+
# Error response from daemon: Invalid container name (-hello-1), only [a-zA-Z0-9][a-zA-Z0-9_.-] are allowed
26
+
# if docker-compose.yml is in the root directory, due to the --project flag defaulting to "".
27
+
# This bug does not exist in the official earthly/dind:alpine image.
0 commit comments