2023-09-26 03:13:31 +02:00
|
|
|
FROM registry.fedoraproject.org/fedora:38
|
|
|
|
|
|
|
|
WORKDIR /app
|
2023-09-26 03:15:23 +02:00
|
|
|
VOLUME /data/maps
|
2023-09-26 03:13:31 +02:00
|
|
|
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"]
|