mirror of
https://github.com/JulianGro/overte.git
synced 2025-04-05 11:27:23 +02:00
39 lines
1.5 KiB
Text
39 lines
1.5 KiB
Text
# Copyright 2022 Overte e.V.
|
|
# SPDX-License-Identifier: MIT
|
|
|
|
# Docker file for building Overte Server
|
|
# Example build: docker build -t overte/overte-server-build:0.1.1-ubuntu-20.04 -f Dockerfile_build_ubuntu-20.04 .
|
|
FROM ubuntu:20.04
|
|
LABEL maintainer="Julian Groß (julian.gro@overte.org)"
|
|
LABEL description="Development image for Overte Domain server and assignment clients."
|
|
|
|
# Don't use any frontend when installalling packages during the creation of this container
|
|
ARG DEBIAN_FRONTEND=noninteractive
|
|
|
|
RUN echo UTC >/etc/timezone
|
|
# Installing via dependency causes interactive hang:
|
|
RUN apt-get update && apt-get -y install tzdata
|
|
|
|
# Install Overte domain-server and assignment-client build dependencies
|
|
RUN apt-get -y install curl ninja-build git cmake g++ libssl-dev python3-distutils python3-distro mesa-common-dev libgl1-mesa-dev libharfbuzz-dev libdouble-conversion3 libxext-dev
|
|
|
|
# Install tools for package creation
|
|
RUN apt-get -y install sudo chrpath binutils dh-make
|
|
|
|
# Install locales package
|
|
RUN apt-get -y install locales
|
|
# Uncomment en_US.UTF-8 for inclusion in generation
|
|
RUN sed -i 's/^# *\(en_US.UTF-8\)/\1/' /etc/locale.gen
|
|
# Generate locale
|
|
RUN locale-gen
|
|
|
|
# Export env vars
|
|
RUN echo "export LC_ALL=en_US.UTF-8" >> ~/.bashrc
|
|
RUN echo "export LANG=en_US.UTF-8" >> ~/.bashrc
|
|
RUN echo "export LANGUAGE=en_US.UTF-8" >> ~/.bashrc
|
|
|
|
# Install tools for creating the server image
|
|
RUN apt-get -y install docker.io xz-utils
|
|
|
|
# Install tools needed for our Github Actions Workflow
|
|
Run apt-get -y install python3-boto3 python3-github zip
|