diff --git a/docker/backend/Dockerfile b/docker/backend/Dockerfile index 84be254aa..bc2ee5299 100644 --- a/docker/backend/Dockerfile +++ b/docker/backend/Dockerfile @@ -1,4 +1,4 @@ -FROM registry.uniworx.de/uniworx/containers/debian:12.5 +FROM debian:12.5 RUN apt-get -y update && apt-get -y install haskell-stack git RUN apt-get -y update && apt-get -y install alex g++ happy libghc-zlib-dev libpq-dev libsodium-dev locales locales-all pkg-config diff --git a/docker/database/Dockerfile b/docker/database/Dockerfile index c8445762a..204c3029d 100644 --- a/docker/database/Dockerfile +++ b/docker/database/Dockerfile @@ -1,4 +1,4 @@ -FROM registry.uniworx.de/fradrive/fradrive/postgres:12 +FROM postgres:12 # Allow for connecting to database without password authentication ENV POSTGRES_HOST_AUTH_METHOD=trust diff --git a/docker/frontend/Dockerfile b/docker/frontend/Dockerfile index b4c4d29d9..8d59ba76a 100644 --- a/docker/frontend/Dockerfile +++ b/docker/frontend/Dockerfile @@ -1,4 +1,4 @@ -FROM registry.uniworx.de/uniworx/containers/debian:12.5 +FROM debian:12.5 # Basic dependencies RUN apt-get -y update && apt-get -y install curl npm diff --git a/docker/podman/Dockerfile b/docker/podman/Dockerfile index 2d5b6fbfe..e7a950419 100644 --- a/docker/podman/Dockerfile +++ b/docker/podman/Dockerfile @@ -4,7 +4,7 @@ # Yoinked with love from: # https://www.redhat.com/sysadmin/podman-inside-container -FROM registry.uniworx.de/uniworx/containers/debian:12.5 +FROM debian:12.5 RUN apt-get -y update