Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

chore(deps): update ubuntu docker tag to v24 #284

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 5 additions & 5 deletions Dockerfile
Original file line number Diff line number Diff line change
@@ -1,15 +1,15 @@
FROM snapcore/snapcraft AS snapcraft
# Using multi-stage dockerfile to obtain snapcraft binary

FROM ubuntu:groovy-20210723 AS flutterbuilder
FROM ubuntu:24.04 AS flutterbuilder
RUN apt-get update \
&& apt-get install -y \
git curl unzip
# Install Flutter from the beta channel
RUN git clone --single-branch --depth=1 --branch beta https://github.com/flutter/flutter /opt/flutter 2>&1 \
&& /opt/flutter/bin/flutter doctor -v

FROM ubuntu:groovy-20210723 AS xarbuilder
FROM ubuntu:24.04 AS xarbuilder
RUN apt-get update \
&& apt-get install -y \
git libssl-dev libxml2-dev make g++ autoconf zlib1g-dev
Expand All @@ -22,7 +22,7 @@ RUN git clone --single-branch --depth=1 --branch xar-1.6.1 https://github.com/ma
&& make 2>&1 \
&& make install 2>&1

FROM ubuntu:groovy-20210723 AS bomutilsbuilder
FROM ubuntu:24.04 AS bomutilsbuilder
RUN apt-get update \
&& apt-get install -y \
git make g++
Expand All @@ -32,7 +32,7 @@ RUN git clone --single-branch --depth=1 --branch 0.2 https://github.com/hogliux/
&& make install 2>&1

# Fixed using https://github.com/AppImage/AppImageKit/issues/828
FROM ubuntu:groovy-20210723 as appimagebuilder
FROM ubuntu:24.04 as appimagebuilder
RUN apt-get update \
&& apt-get install -y \
curl
Expand All @@ -44,7 +44,7 @@ RUN cd /opt \
&& mv squashfs-root appimagetool

# groovy ships with a too old meson version
FROM ubuntu:groovy-20210723 AS pacmanbuilder
FROM ubuntu:24.04 AS pacmanbuilder
ENV DEBIAN_FRONTEND=noninteractive
RUN apt-get update \
&& apt-get install -y \
Expand Down