initial commit
Some checks failed
/ test1 (push) Failing after -1s

This commit is contained in:
2026-03-18 17:16:32 +02:00
commit 5fc3ad0b47
4 changed files with 74 additions and 0 deletions

12
Dockerfile Normal file
View File

@@ -0,0 +1,12 @@
FROM alpine:latest
RUN apk add gcc
RUN mkdir /app
COPY *.c /app/
COPY test.sh /
RUN chmod +x "test.sh"
WORKDIR /app
ENTRYPOINT ["/test.sh"]