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

Fixed Dockerfile

parent a9bdb1db
No related branches found
No related tags found
1 merge request!1New branch with fixed history
FROM debian:12.1-slim FROM mariadb:11.1
# copy directories with scripts # 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 # update system for security reasons
RUN chmod a+x /root/inputs/*.sh
# update system packages for security concerns
RUN $HOME/inputs/update_sys.sh 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