diff --git a/Dockerfile b/Dockerfile index dc145f4..e303bef 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,15 +1,15 @@ -#FROM base/archlinux -FROM arch-python +FROM base/archlinux +#FROM arch-python WORKDIR /app -#ADD . /app +ADD . /app # Update -#RUN pacman -Syu --no-comfirm +RUN pacman -Syu --noconfirm # minigrida deps -#RUN pacman -S --noconfirm python-gdal python-yaml +RUN pacman -S --noconfirm python-gdal python-yaml # triskele deps (build) RUN pacman -S --noconfirm git python-pip make gcc intel-tbb boost diff --git a/docker-compose-registry.yml b/docker-compose-registry.yml new file mode 100644 index 0000000..9d8f06d --- /dev/null +++ b/docker-compose-registry.yml @@ -0,0 +1,14 @@ +version: '3.7' + +services: + registry: + image: registry + restart: always + volumes: + - storage:/var/lib/registry + ports: + - 5000:5000 + +volumes: + storage: +