Lora-Map/Dockerfile
Jannis Warnat c5e7b9e103 added Dockerfile and docker-compose.yml
Build:

docker-compose build

Run (Provide ./Lora-Map/config/requests.conf and ./Lora-Map/config/settings.conf):

docker-compose up -d
2019-06-07 17:37:12 +02:00

13 lines
379 B
Docker

FROM mono:latest
RUN apt-get update && apt-get install -y curl gnupg
RUN curl -L http://repo.blubbfish.net/blubb.gpg.key | apt-key add -
RUN echo "deb http://repo.blubbfish.net blubb main" | tee "/etc/apt/sources.list.d/blubb.list"
RUN apt-get update && apt-get install -y loramap
RUN chmod u+x /usr/local/bin/loramap/Lora-Map.exe
WORKDIR /usr/local/bin/loramap