mirror of
https://github.com/nextcloud/all-in-one.git
synced 2024-11-14 11:04:28 +08:00
c3aa304e08
Bumps alpine from 3.16.2 to 3.16.3. --- updated-dependencies: - dependency-name: alpine dependency-type: direct:production update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] <support@github.com>
13 lines
314 B
Docker
13 lines
314 B
Docker
# From https://github.com/containrrr/watchtower/blob/main/dockerfiles/Dockerfile.self-contained
|
|
FROM containrrr/watchtower:1.5.1 as watchtower
|
|
|
|
FROM alpine:3.16.3
|
|
|
|
RUN apk add --update --no-cache bash
|
|
COPY --from=watchtower /watchtower /
|
|
|
|
COPY start.sh /
|
|
RUN chmod +x /start.sh
|
|
|
|
USER root
|
|
ENTRYPOINT ["/start.sh"]
|