Skip to content

Commit

Permalink
Try new installation instructions for mono
Browse files Browse the repository at this point in the history
  • Loading branch information
albireox committed Feb 24, 2024
1 parent cf5edd0 commit e6b2f51
Showing 1 changed file with 7 additions and 8 deletions.
15 changes: 7 additions & 8 deletions container/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -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 \
Expand Down

0 comments on commit e6b2f51

Please sign in to comment.