You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository has been archived by the owner on Jul 7, 2021. It is now read-only.
As mentioned in #4, mono fails with an error when starting on a server. I've come as far as determining it's caused by this line, which assumes a graphical interface (/browser) is present. More specifically, I'm trying to run this as a Docker container for which I currently have:
FROM debian:jessie-slim
ENV MONO_VERSION 5.2.0.215
RUN apt-key adv --keyserver hkp://keyserver.ubuntu.com:80 --recv-keys 3FA7E0328081BFF6A14DA29AA6A19B38D3D831EF
RUN echo "deb http://download.mono-project.com/repo/debian jessie/snapshots/$MONO_VERSION main" > /etc/apt/sources.list.d/mono-official.list \
&& apt-get update \
&& apt-get install -y mono-complete \
&& apt-get install -y wget \
&& rm -rf /var/lib/apt/lists/* /tmp/*
RUN wget https://github.com/ServiceStackApps/RedisReact/raw/master/dist/RedisReact-console.exe
RUN mkdir -p /app && mv RedisReact-console.exe /app
WORKDIR /app
EXPOSE 2337
RUN mono --version
RUN mono ./RedisReact-console.exe
The mono setup is simply copy pasted from the official mono image, except for replacing the mono version with mono-complete.
The error I'm getting is exactly the same as in #4. Perhaps there is a way to try { } catch () { } this line?
The text was updated successfully, but these errors were encountered:
Sign up for freeto subscribe to this conversation on GitHub.
Already have an account?
Sign in.
As mentioned in #4,
mono
fails with an error when starting on a server. I've come as far as determining it's caused by this line, which assumes a graphical interface (/browser) is present. More specifically, I'm trying to run this as aDocker
container for which I currently have:The
mono
setup is simply copy pasted from the officialmono
image, except for replacing the mono version withmono-complete
.The error I'm getting is exactly the same as in #4. Perhaps there is a way to
try { } catch () { }
this line?The text was updated successfully, but these errors were encountered: