mirror of
https://github.com/vimagick/dockerfiles.git
synced 2024-11-24 08:52:31 +02:00
16 lines
326 B
Docker
16 lines
326 B
Docker
|
#
|
||
|
# Dockerfile for dsniff-arm
|
||
|
#
|
||
|
|
||
|
FROM easypi/alpine-arm
|
||
|
|
||
|
MAINTAINER EasyPi Software Foundation
|
||
|
|
||
|
RUN set -xe \
|
||
|
&& echo 'http://dl-cdn.alpinelinux.org/alpine/edge/testing' >> /etc/apk/repositories \
|
||
|
&& apk add --no-cache bash coreutils dsniff tmux
|
||
|
|
||
|
CMD set -xe \
|
||
|
&& tmux new -d -x 800 -y 600 \
|
||
|
&& sleep infinity
|