1
0
mirror of https://github.com/jessfraz/dockerfiles.git synced 2025-03-13 08:48:09 +01:00
Michael 7eea00edf3 Replaced deprecated MAINTAINER with LABEL ()
Signed-off-by: Michael Käufl <dockerfiles@c.michael-kaeufl.de>
2017-03-09 10:14:37 -08:00

10 lines
210 B
Docker

FROM debian:stretch
LABEL maintainer "Jessie Frazelle <jess@linux.com>"
RUN apt-get update && apt-get install -y \
stress \
--no-install-recommends \
&& rm -rf /var/lib/apt/lists/*
ENTRYPOINT [ "stress" ]