File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 4141 - codedev
4242 - code
4343 - talk-janus
44+ - noop
4445 permissions :
4546 packages : write
4647 contents : read
Original file line number Diff line number Diff line change @@ -661,7 +661,7 @@ services:
661661 - host.docker.internal:host-gateway
662662
663663 database-sqlite :
664- image : rwgrim/docker- noop
664+ image : ghcr.io/juliusknorr/nextcloud-dev- noop:latest
665665
666666 database-mysql :
667667 image : mariadb:10.6
Original file line number Diff line number Diff line change 1+ # VERSION 0.1.0
2+ # Based on https://github.com/JanNash/docker_noop
3+
4+ FROM alpine:latest AS builder
5+ COPY noop/noop.c /
6+ RUN apk add --no-cache gcc musl-dev && gcc -static -o /noop /noop.c
7+
8+ FROM scratch
9+
10+ COPY --from=builder /noop /noop
11+ CMD ["/noop" ]
Original file line number Diff line number Diff line change 1+ #include <stdlib.h>
2+
3+ int main () {
4+ exit (0 );
5+ }
You can’t perform that action at this time.
0 commit comments