test5/Dockerfile
hasslesstech 5fc3ad0b47
Some checks failed
/ test1 (push) Failing after -1s
initial commit
2026-03-18 17:16:32 +02:00

13 lines
144 B
Docker

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"]