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

Docker: Update to Fedora 38 #77

Merged
merged 1 commit into from
Oct 17, 2023
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
17 changes: 7 additions & 10 deletions Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -10,24 +10,21 @@ ARG KASSIOPEIA_GIT_COMMIT=""
ARG KASSIOPEIA_CPUS=""

# --- runtime-base ---
# NOTE: Fedora 36 is used because of this issue: https://gitlab.freedesktop.org/mesa/mesa/-/issues/9442
# If our IT can circumvent this with a JupyterHub VM emulation change, we may ignore this issue in the future.
# NOTE: For Fedora 37 & 38, uncomment marked lines below
# NOTE: For Fedora 39, remove marked lines below
FROM fedora:36 as runtime-base
FROM fedora:38 as runtime-base
ARG KASSIOPEIA_UID
ARG KASSIOPEIA_USER
ARG KASSIOPEIA_GID
ARG KASSIOPEIA_GROUP

LABEL description="Runtime base container"

# # TODO REMOVE FOR FEDORA 39
# RUN dnf update -y \
# && dnf install -y --setopt=install_weak_deps=False dnf-plugins-core \
# && dnf clean all
# RUN dnf copr enable thofmann/log4xx-1.x -y
# # END TODO
# TODO REMOVE FOR FEDORA 39
RUN dnf update -y \
&& dnf install -y --setopt=install_weak_deps=False dnf-plugins-core \
&& dnf clean all
RUN dnf copr enable thofmann/log4xx-1.x -y
# END TODO

COPY Docker/packages.runtime packages
RUN dnf update -y \
Expand Down