-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Try new installation instructions for mono
- Loading branch information
Showing
1 changed file
with
7 additions
and
8 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -12,21 +12,20 @@ MAINTAINER Florian Briegel, [email protected] | |
|
||
# podman run --rm -ti --name lvm-sci-pwi -v ~lvm/workspace/lvm:/root/lvm:Z -e PWI_NAME=lvm.sci.pwi -e PWI_GEOM=1200x900 -e LVM_ACTOR_ARGS="--verbose --rmq_url=amqp://guest:[email protected]:5672/" -p 8091:6080 ghcr.io/sdss/lvmpwi:latest | ||
|
||
RUN apt-get update && \ | ||
DEBIAN_FRONTEND="noninteractive" apt-get install -y --no-install-recommends software-properties-common && \ | ||
apt install -y gnupg ca-certificates && \ | ||
apt-key adv --keyserver hkp://keyserver.ubuntu.com:80 --recv-keys 3FA7E0328081BFF6A14DA29AA6A19B38D3D831EF && \ | ||
echo "deb https://download.mono-project.com/repo/ubuntu stable-focal main" | tee /etc/apt/sources.list.d/mono-official-stable.list | ||
|
||
RUN apt update && \ | ||
DEBIAN_FRONTEND="noninteractive" apt install -y software-properties-common && \ | ||
apt install ca-certificates gnupg && \ | ||
gpg --homedir /tmp --no-default-keyring --keyring /usr/share/keyrings/mono-official-archive-keyring.gpg --keyserver hkp://keyserver.ubuntu.com:80 --recv-keys 3FA7E0328081BFF6A14DA29AA6A19B38D3D831EF && \ | ||
echo "deb [signed-by=/usr/share/keyrings/mono-official-archive-keyring.gpg] https://download.mono-project.com/repo/ubuntu stable-focal main" | tee /etc/apt/sources.list.d/mono-official-stable.list && \ | ||
apt update | ||
|
||
# RUN dpkg --add-architecture i386 && \ | ||
# wget -qO- https://dl.winehq.org/wine-builds/winehq.key | sudo apt-key add - && \ | ||
# apt-add-repository "deb http://dl.winehq.org/wine-builds/ubuntu/ $(lsb_release -cs) main" && \ | ||
# apt install -y --install-recommends winehq-stable winetricks | ||
|
||
|
||
RUN apt-get update \ | ||
&& DEBIAN_FRONTEND="noninteractive" apt-get install -y --no-install-recommends \ | ||
RUN DEBIAN_FRONTEND="noninteractive" apt install -y \ | ||
wget \ | ||
wmctrl \ | ||
xfonts-base xfonts-75dpi xfonts-100dpi \ | ||
|