Skip to content
Merged
Show file tree
Hide file tree
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
6 changes: 3 additions & 3 deletions dockerfiles/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
# Build stage #
#################

FROM ubuntu:22.04 AS build
FROM ubuntu:24.04 AS build

# Install packaged dependencies
RUN apt-get update && DEBIAN_FRONTEND=noninteractive apt-get install -y --no-install-recommends \
Expand Down Expand Up @@ -67,7 +67,7 @@ RUN cargo build --profile=$PROFILE
# Web server stage #
######################

FROM ubuntu:22.04 AS web-server
FROM ubuntu:24.04 AS web-server

RUN apt-get update \
&& DEBIAN_FRONTEND=noninteractive apt-get upgrade -y \
Expand All @@ -90,7 +90,7 @@ CMD ["/usr/bin/tini", "/usr/local/bin/cratesfyi", "start-web-server", "0.0.0.0:8
# Output stage #
##################

FROM ubuntu:22.04 AS output
FROM ubuntu:24.04 AS output

RUN apt-get update && DEBIAN_FRONTEND=noninteractive apt-get install -y \
git \
Expand Down
7 changes: 2 additions & 5 deletions dockerfiles/Dockerfile-gui-tests
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM ubuntu:22.04 AS build
FROM ubuntu:24.04 AS build

# Install packaged dependencies
RUN apt-get update && DEBIAN_FRONTEND=noninteractive apt-get install -y --no-install-recommends \
Expand All @@ -17,8 +17,7 @@ RUN apt-get update && apt-get install -y \

# Install dependencies for chromium browser
RUN apt-get install -y \
gconf-service \
libasound2 \
libasound2t64 \
libatk1.0-0 \
libatk-bridge2.0-0 \
libc6 \
Expand All @@ -29,7 +28,6 @@ RUN apt-get install -y \
libfontconfig1 \
libgbm-dev \
libgcc1 \
libgconf-2-4 \
libgdk-pixbuf2.0-0 \
libglib2.0-0 \
libgtk-3-0 \
Expand All @@ -51,7 +49,6 @@ RUN apt-get install -y \
libxss1 \
libxtst6 \
fonts-liberation \
libappindicator1 \
libnss3 \
lsb-release \
xdg-utils \
Expand Down
Loading