-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathDockerfile
35 lines (31 loc) · 883 Bytes
/
Dockerfile
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
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 && \
dnf clean all && \
rm -rf /var/cache/dnf
ENV LANG en_US.UTF-8
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 \
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
# Install Python linting tools
RUN python3 -m pip --no-cache-dir --no-input install black flake8