2
0
Fork 0

osm-garmin: add Containerfile

This commit is contained in:
Ducky 2023-09-26 02:13:31 +01:00
parent b37cf2742a
commit e52a69735c
5 changed files with 294 additions and 0 deletions

12
osm-garmin/Containerfile Normal file
View file

@ -0,0 +1,12 @@
FROM registry.fedoraproject.org/fedora:38
WORKDIR /app
VOLUME /data
COPY app/ /app
RUN chmod +x /app/*.sh
RUN dnf install --assumeyes --setopt=install_weak_deps=False java-1.8.0-openjdk nano unzip
RUN /app/install-mkgmap.sh
RUN dnf clean --assumeyes all
CMD ["/app/bin/daemon.sh"]