13 lines
144 B
Docker
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"]
|