Skip to content
Snippets Groups Projects
Commit 01177be4 authored by Riccardo Boero's avatar Riccardo Boero :innocent:
Browse files

Fixed Dockerfile

parent 90fcf8f4
No related branches found
No related tags found
No related merge requests found
FROM debian:12.1-slim
FROM mariadb:11.1
# copy directories with scripts
COPY inputs /root/inputs
COPY inputs/update_sys.sh /root/inputs/update_sys.sh
RUN chmod a+x /root/inputs/update_sys.sh
COPY dump /docker-entrypoint-initdb.d
# make shell scripts executables
RUN chmod a+x /root/inputs/*.sh
# update system packages for security concerns
# update system for security reasons
RUN $HOME/inputs/update_sys.sh
# download & filter maps
RUN $HOME/inputs/load_maps.sh
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment