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

Add dbus-devel to Dockerfile package list #15

Merged
merged 2 commits into from
Apr 5, 2024
Merged
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
26 changes: 19 additions & 7 deletions Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM fedora:38
FROM fedora:40
LABEL org.opencontainers.image.source=https://github.com/GSConnect/gsconnect-ci

RUN dnf --setopt install_weak_deps=false -y install glibc-langpack-en && \
Expand All @@ -9,15 +9,27 @@ ENV LANGUAGE en_US.UTF-8
ENV LC_ALL en_US.UTF-8

RUN dnf --setopt install_weak_deps=false -y install \
appstream desktop-file-utils gcc gettext git glib2-devel \
gnome-shell gnome-desktop-testing meson nodejs-npm python3 \
python3-pip xorg-x11-server-Xvfb zip && \
dnf clean all && \
rm -rf /var/cache/dnf
appstream \
desktop-file-utils \
dbus-devel \
gcc \
gettext \
git \
glib2-devel \
gnome-shell \
gnome-desktop-testing \
meson \
nodejs-npm \
python3 \
python3-pip \
xorg-x11-server-Xvfb \
zip && \
dnf clean all && \
rm -rf /var/cache/dnf

# Install eslint
RUN npm install -g eslint && \
npm cache clean --force
npm cache clean --force

Copy link
Member Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Oops. Didn't actually intend to change that line, but oh well.

# Install Python linting tools
RUN python3 -m pip --no-cache-dir --no-input install black flake8
Loading