Build: docker-compose build Run (Provide ./Lora-Map/config/requests.conf and ./Lora-Map/config/settings.conf): docker-compose up -d
13 lines
379 B
Docker
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
|