diff --git a/changelog/unreleased/fix-dockerfile-for-posixfs.md b/changelog/unreleased/fix-dockerfile-for-posixfs.md new file mode 100644 index 000000000..a1f3ea9ec --- /dev/null +++ b/changelog/unreleased/fix-dockerfile-for-posixfs.md @@ -0,0 +1,7 @@ +Bugfix: Add inotify-tools and bash packages to docker files + +We need both packages to make posixfs work. Later, once the golang +package is fixed to not depend on bash any more, bash can be removed +again. + +https://github.com/owncloud/ocis/pull/9440 diff --git a/ocis/docker/Dockerfile.linux.amd64 b/ocis/docker/Dockerfile.linux.amd64 index 6b00eda1a..8915608d8 100644 --- a/ocis/docker/Dockerfile.linux.amd64 +++ b/ocis/docker/Dockerfile.linux.amd64 @@ -3,7 +3,7 @@ FROM amd64/alpine:3.18 ARG VERSION="" ARG REVISION="" -RUN apk add --no-cache ca-certificates mailcap tree attr curl && \ +RUN apk add --no-cache ca-certificates mailcap tree attr curl inotify-tools bash && \ echo 'hosts: files dns' >| /etc/nsswitch.conf LABEL maintainer="ownCloud GmbH " \ diff --git a/ocis/docker/Dockerfile.linux.arm64 b/ocis/docker/Dockerfile.linux.arm64 index 7483d0af5..aabf5110e 100644 --- a/ocis/docker/Dockerfile.linux.arm64 +++ b/ocis/docker/Dockerfile.linux.arm64 @@ -3,7 +3,7 @@ FROM arm64v8/alpine:3.18 ARG VERSION="" ARG REVISION="" -RUN apk add --no-cache ca-certificates mailcap tree attr curl && \ +RUN apk add --no-cache ca-certificates mailcap tree attr curl inotify-tools bash && \ echo 'hosts: files dns' >| /etc/nsswitch.conf LABEL maintainer="ownCloud GmbH " \