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

Fedora: add fedora-39 #97

Merged
merged 1 commit into from
Mar 4, 2024
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.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
1 change: 1 addition & 0 deletions .github/workflows/build-test-deploy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -29,6 +29,7 @@ jobs:
fedora-36,
fedora-37,
fedora-38,
fedora-39,
opensuse-15.4,
ubuntu-18.04,
ubuntu-20.04,
Expand Down
80 changes: 80 additions & 0 deletions dockerfiles/fedora/fedora-39/fedora-39-base/Dockerfile
Original file line number Diff line number Diff line change
@@ -0,0 +1,80 @@
# fedora-39-base
# Copyright (C) 2021 Intel Corporation
# Copyright (C) 2021-2024 Konsulko Group
#
# SPDX-License-Identifier: GPL-2.0-only
#

FROM fedora:39

RUN dnf -y update && \
dnf -y install \
# These packages were copied straight from the Yocto Project reference
# manual which is why they are not alphabetized
gawk \
make \
wget \
tar \
bzip2 \
gzip \
python3 \
unzip \
perl \
patch \
diffutils \
diffstat \
git \
cpp \
gcc \
gcc-c++ \
glibc-devel \
texinfo \
chrpath \
ccache \
perl-Data-Dumper \
perl-Text-ParseWords \
perl-Thread-Queue \
perl-bignum \
socat \
python3-pexpect \
findutils \
which \
file \
cpio \
python3-pip \
xz \
python3-GitPython \
python3-jinja2 \
SDL-devel \
xterm \
rpcgen \
lz4 \
zstd \
\
# These packages were added because of reasons such as fewer packages
# being in the container image by default
fluxbox \
glibc-langpack-en \
hostname \
procps \
python-unversioned-command \
subversion \
sudo \
screen \
tigervnc-server \
tmux && \
cp -af /etc/skel/ /etc/vncskel/ && \
echo "export DISPLAY=1" >>/etc/vncskel/.bashrc && \
mkdir /etc/vncskel/.vnc && \
echo "" | vncpasswd -f > /etc/vncskel/.vnc/passwd && \
chmod 0600 /etc/vncskel/.vnc/passwd && \
useradd -U -m yoctouser

COPY build-install-dumb-init.sh /
RUN bash /build-install-dumb-init.sh && \
rm /build-install-dumb-init.sh && \
dnf -y clean all

USER yoctouser
WORKDIR /home/yoctouser
CMD /bin/bash