test5/Dockerfile

7 lines
87 B
Docker
Raw Normal View History

2026-03-18 17:16:32 +02:00
FROM alpine:latest
2026-03-18 18:04:35 +02:00
RUN apk add gcc musl-dev
2026-03-18 18:03:15 +02:00
WORKDIR /app
2026-03-18 17:16:32 +02:00
2026-03-18 18:02:34 +02:00
ENTRYPOINT ["/app/test.sh"]