fix param generation
All checks were successful
continuous-integration/drone/tag Build is passing

This commit is contained in:
2023-11-09 16:27:05 +01:00
parent e2006e0304
commit b6efb7a160
2 changed files with 24 additions and 13 deletions

View File

@@ -2,7 +2,7 @@ FROM alpine:3.15
RUN \
apk upgrade --update --no-cache && \
apk add --update --no-cache nextcloud-client
apk add --update --no-cache nextcloud-client bash
ENV USER_NAME=nextcloudclient
ENV USER_UID=1000
@@ -23,4 +23,4 @@ ENV NEXTCLOUD_SLEEP=30
COPY start.sh /start.sh
ENTRYPOINT ["/bin/sh", "/start.sh"]
ENTRYPOINT ["/bin/bash", "/start.sh"]