12 lines
288 B
Docker
12 lines
288 B
Docker
FROM registry.fedoraproject.org/fedora:38
|
|
|
|
WORKDIR /app
|
|
VOLUME /data/maps
|
|
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/osm-garmin.sh"] |