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