Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix docker files #9440

Merged
merged 3 commits into from
Jun 27, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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