Merge pull request #430 from juliusknorr/copilot/fix-docker-compose-pull-issue
This commit is contained in:
@@ -41,6 +41,7 @@ jobs:
|
||||
- codedev
|
||||
- code
|
||||
- talk-janus
|
||||
- noop
|
||||
permissions:
|
||||
packages: write
|
||||
contents: read
|
||||
|
||||
+1
-1
@@ -661,7 +661,7 @@ services:
|
||||
- host.docker.internal:host-gateway
|
||||
|
||||
database-sqlite:
|
||||
image: rwgrim/docker-noop
|
||||
image: ghcr.io/juliusknorr/nextcloud-dev-noop:latest
|
||||
|
||||
database-mysql:
|
||||
image: mariadb:10.6
|
||||
|
||||
@@ -0,0 +1,11 @@
|
||||
# VERSION 0.1.0
|
||||
# Based on https://github.com/JanNash/docker_noop
|
||||
|
||||
FROM alpine:latest AS builder
|
||||
COPY noop/noop.c /
|
||||
RUN apk add --no-cache gcc musl-dev && gcc -static -o /noop /noop.c
|
||||
|
||||
FROM scratch
|
||||
|
||||
COPY --from=builder /noop /noop
|
||||
CMD ["/noop"]
|
||||
@@ -0,0 +1,5 @@
|
||||
#include <stdlib.h>
|
||||
|
||||
int main() {
|
||||
exit(0);
|
||||
}
|
||||
Reference in New Issue
Block a user