-
Notifications
You must be signed in to change notification settings - Fork 186
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #9440 from owncloud/fix-docker-files
Fix docker files
- Loading branch information
Showing
3 changed files
with
9 additions
and
2 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -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]>" \ | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -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]>" \ | ||
|