6 lines
65 B
Docker
6 lines
65 B
Docker
FROM alpine:latest
|
|
|
|
RUN apk add gcc
|
|
|
|
ENTRYPOINT ["/app/test.sh"]
|