Merge pull request #9440 from owncloud/fix-docker-files

Fix docker files
This commit is contained in:
Michael Barz
2024-06-27 11:51:29 +02:00
committed by GitHub
3 changed files with 9 additions and 2 deletions
@@ -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
+1 -1
View File
@@ -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 <devops@owncloud.com>" \
+1 -1
View File
@@ -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 <devops@owncloud.com>" \