Remotely/Server/Dockerfile.old
Jared Goodwin 56ee561ca2
Bug - Proto forwarded header not being seen by ASP.NET Core. (#554)
* Set permissions on log file so non-elevated process can write to it.

* Replace more instances of static Logger with ILogger<T>.

* Add default Docker host to known proxies.

* Update Immense.RemoteControl

* Update Immense.RemoteControl
2023-01-06 16:48:03 -08:00

40 lines
796 B
Docker

FROM ubuntu:jammy
EXPOSE 5000
ENV ASPNETCORE_ENVIRONMENT="Production"
ENV ASPNETCORE_URLS="http://*:5000"
RUN \
apt-get -y update && \
apt-get -y install \
apt-utils \
wget \
apt-transport-https \
unzip \
acl \
libssl1.0
RUN \
apt-get -y install aspnetcore-runtime-6.0
RUN \
mkdir -p /app && \
mkdir /config && \
wget -q https://github.com/immense/Remotely/releases/latest/download/Remotely_Server_Linux-x64.zip && \
unzip -o Remotely_Server_Linux-x64.zip -d /app && \
rm Remotely_Server_Linux-x64.zip
RUN \
mkdir -p /remotely-data && \
sed -i 's/DataSource=Remotely.db/DataSource=\/remotely-data\/Remotely.db/' /app/appsettings.json
VOLUME "/remotely-data"
WORKDIR /app
COPY DockerMain.sh /
RUN chmod 755 /DockerMain.sh
ENTRYPOINT ["/DockerMain.sh"]