7 lines
87 B
Docker
7 lines
87 B
Docker
FROM alpine:latest
|
|
|
|
RUN apk add gcc musl-dev
|
|
WORKDIR /app
|
|
|
|
ENTRYPOINT ["/app/test.sh"]
|