debug
ci/woodpecker/push/build Pipeline failed Details

main
gapodo 2023-11-25 23:28:32 +01:00
parent cf4955191f
commit 00b948c05b
2 changed files with 6 additions and 5 deletions

View File

@ -52,7 +52,7 @@ steps:
settings:
platforms: *platforms
dockerfile: dist/docker/Dockerfile
context: .
context: dist/docker/
registry:
from_secret: registry_domain
repo:
@ -73,7 +73,7 @@ steps:
settings:
platforms: *platforms
dockerfile: dist/docker/Dockerfile
context: .
context: dist/docker/
registry:
from_secret: registry_domain
repo:
@ -93,7 +93,7 @@ steps:
settings:
platforms: *platforms
dockerfile: dist/docker/Dockerfile
context: .
context: dist/docker/
registry:
from_secret: registry_domain
repo:

View File

@ -2,8 +2,9 @@
cat <<EOF
FROM alpine:latest AS fsprep
COPY ./ /container/
RUN chown 0:0 -R /container \\
COPY . /container/
RUN ls -l /container \\
&& chown 0:0 -R /container \\
&& chmod 755 -R /container/bin \\
&& chmod 775 /container/etc /container/home \\
&& chmod 644 /container/etc/passwd /container/etc/group \\