mirror of https://github.com/Xhofe/alist
fix: `/entrypoint.sh` permission denied
parent
e89489453d
commit
d45209edb2
|
@ -11,7 +11,8 @@ VOLUME /opt/alist/data/
|
||||||
WORKDIR /opt/alist/
|
WORKDIR /opt/alist/
|
||||||
COPY --from=builder /app/bin/alist ./
|
COPY --from=builder /app/bin/alist ./
|
||||||
COPY entrypoint.sh /entrypoint.sh
|
COPY entrypoint.sh /entrypoint.sh
|
||||||
RUN apk add ca-certificates bash su-exec
|
RUN apk add ca-certificates bash su-exec; \
|
||||||
|
chmod +x /entrypoint.sh
|
||||||
ENV PUID=1000 PGID=1000 UMASK=022
|
ENV PUID=1000 PGID=1000 UMASK=022
|
||||||
EXPOSE 5244
|
EXPOSE 5244
|
||||||
ENTRYPOINT [ "/entrypoint.sh" ]
|
ENTRYPOINT [ "/entrypoint.sh" ]
|
Loading…
Reference in New Issue