Skip to content

Commit

Permalink
Merge pull request #9440 from owncloud/fix-docker-files
Browse files Browse the repository at this point in the history
Fix docker files
  • Loading branch information
micbar committed Jun 27, 2024
2 parents e9e16f3 + 73028f2 commit fe784ec
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 2 deletions.
7 changes: 7 additions & 0 deletions changelog/unreleased/fix-dockerfile-for-posixfs.md
Original file line number Diff line number Diff line change
@@ -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
2 changes: 1 addition & 1 deletion ocis/docker/Dockerfile.linux.amd64
Original file line number Diff line number Diff line change
Expand Up @@ -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 <[email protected]>" \
Expand Down
2 changes: 1 addition & 1 deletion ocis/docker/Dockerfile.linux.arm64
Original file line number Diff line number Diff line change
Expand Up @@ -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 <[email protected]>" \
Expand Down

0 comments on commit fe784ec

Please sign in to comment.