12 lines
283 B
Plaintext
12 lines
283 B
Plaintext
|
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"]
|