Add inotify-tools and bash to work with posixFS

The golang inotify package that is used uses bash to start
inotifywait. That needs to be fixed, but until than we add
bash to the docker container
This commit is contained in:
Klaas Freitag
2024-06-21 17:20:39 +02:00
committed by Florian Schade
parent e32842a67a
commit c708bb5816
2 changed files with 2 additions and 2 deletions

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>" \

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>" \