11FROM snapcore/snapcraft AS snapcraft
22# Using multi-stage dockerfile to obtain snapcraft binary
33
4- FROM ubuntu:groovy AS flutterbuilder
4+ FROM ubuntu:groovy-20210723 AS flutterbuilder
55RUN apt-get update \
66 && apt-get install -y \
77 git curl unzip
88# Install Flutter from the beta channel
99RUN git clone --single-branch --depth=1 --branch beta https://github.com/flutter/flutter /opt/flutter 2>&1 \
1010 && /opt/flutter/bin/flutter doctor -v
1111
12- FROM ubuntu:groovy AS xarbuilder
12+ FROM ubuntu:groovy-20210723 AS xarbuilder
1313RUN apt-get update \
1414 && apt-get install -y \
1515 git libssl-dev libxml2-dev make g++ autoconf zlib1g-dev
@@ -22,7 +22,7 @@ RUN git clone --single-branch --depth=1 --branch xar-1.6.1 https://github.com/ma
2222 && make 2>&1 \
2323 && make install 2>&1
2424
25- FROM ubuntu:groovy AS bomutilsbuilder
25+ FROM ubuntu:groovy-20210723 AS bomutilsbuilder
2626RUN apt-get update \
2727 && apt-get install -y \
2828 git make g++
@@ -32,7 +32,7 @@ RUN git clone --single-branch --depth=1 --branch 0.2 https://github.com/hogliux/
3232 && make install 2>&1
3333
3434# Fixed using https://github.com/AppImage/AppImageKit/issues/828
35- FROM ubuntu:groovy as appimagebuilder
35+ FROM ubuntu:groovy-20210723 as appimagebuilder
3636RUN apt-get update \
3737 && apt-get install -y \
3838 curl
@@ -44,7 +44,7 @@ RUN cd /opt \
4444 && mv squashfs-root appimagetool
4545
4646# groovy ships with a too old meson version
47- FROM ubuntu:groovy AS pacmanbuilder
47+ FROM ubuntu:groovy-20210723 AS pacmanbuilder
4848ENV DEBIAN_FRONTEND=noninteractive
4949RUN apt-get update \
5050 && apt-get install -y \
0 commit comments