Skip to content

Commit 53a2df2

Browse files
committed
Try use debian:latest as base image for Docker image builds, to attmpet to resolve the build issue
1 parent 42092ad commit 53a2df2

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
# Build the build base environment
2-
FROM ubuntu:rolling AS base
2+
FROM debian:latest AS base
33
RUN set -ex && \
44
cd / && \
55
echo '#!/bin/sh' > /try.sh && echo 'res=1; for i in $(seq 0 36); do $@; res=$?; [ $res -eq 0 ] && exit $res || sleep 10; done; exit $res' >> /try.sh && chmod +x /try.sh && \

0 commit comments

Comments
 (0)