-
-
Notifications
You must be signed in to change notification settings - Fork 56
/
Copy pathDockerfile_build_rockylinux-9
33 lines (25 loc) · 1.34 KB
/
Dockerfile_build_rockylinux-9
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
# Copyright 2022-2025 Overte e.V.
# SPDX-License-Identifier: Apache-2.0
# Docker file for building Overte Server
# Example build: docker build -t overte/overte-server-build:0.1.6-rockylinux-9 -f Dockerfile_build_rockylinux-9 .
FROM rockylinux:9
LABEL maintainer="Julian Groß ([email protected])"
LABEL description="Development image for Overte Domain server and assignment clients."
# Add required Rocky Linux tools
RUN dnf -y install dnf-utils
# Add "Extra Packages for Enterprise Linux" repository
RUN dnf -y install epel-release
# Add "Code Ready Builder" repository
RUN dnf config-manager --enable crb
# Install Overte domain-server and assignment-client build dependencies
# Work around an issue with aarch64 shipping curl-minimal and us requesting curl by allowing dnf to use erase curl-minimal.
RUN dnf -y --allowerasing install curl ninja-build git cmake gcc-c++ openssl-devel qt5-qtwebsockets-devel qt5-qtmultimedia-devel unzip libXext-devel qt5-qtwebchannel-devel qt5-qtwebengine-devel qt5-qtxmlpatterns-devel systemd-devel python3-packaging
# Install additional build tools
RUN dnf -y install zip unzip
# Install tools for package creation
RUN dnf -y install chrpath rpmdevtools
# Install tools needed for our Github Actions Workflow
Run dnf -y install python3-boto3 python3-github
# Install Conan
RUN dnf -y install python3-pip
RUN pip3 install conan