mirror of
https://github.com/jessfraz/dockerfiles.git
synced 2025-02-08 21:19:19 +01:00
8 lines
84 B
Docker
8 lines
84 B
Docker
FROM alpine:latest
|
|
|
|
RUN apk add --no-cache \
|
|
bash \
|
|
strace
|
|
|
|
ENTRYPOINT ["strace"]
|