timeout/Dockerfile

8 lines
108 B
Docker
Raw Normal View History

2022-12-31 13:24:59 +01:00
FROM alpine:3
2023-01-01 11:47:45 +01:00
RUN apk add netcat-openbsd iputils
2022-12-31 13:42:09 +01:00
COPY ./timeout /bin/timeout
2022-12-31 13:40:24 +01:00
2022-12-31 13:42:09 +01:00
ENTRYPOINT ["/bin/timeout"]