mirror of
https://github.com/opencloud-eu/opencloud.git
synced 2026-05-06 19:40:42 -05:00
Merge pull request #9440 from owncloud/fix-docker-files
Fix docker files
This commit is contained in:
@@ -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
|
||||
@@ -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>" \
|
||||
|
||||
@@ -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>" \
|
||||
|
||||
Reference in New Issue
Block a user