Skip to content

Commit

Permalink
Docker Use ubuntu:devel as intermediate builder image, since it provi…
Browse files Browse the repository at this point in the history
…des the most up to date software
  • Loading branch information
NI committed May 20, 2022
1 parent 2340636 commit 899a4ec
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# Build the build base environment
FROM ubuntu:rolling AS base
FROM ubuntu:devel AS base
RUN set -ex && \
cd / && \
echo '#!/bin/sh' > /try.sh && echo 'res=0; for i in $(seq 0 36); do $@; res=$?; [ $res -eq 0 ] && exit $res || sleep 10; done; exit $res' >> /try.sh && chmod +x /try.sh && \
Expand Down

0 comments on commit 899a4ec

Please sign in to comment.