mirror of
https://github.com/telekom-security/tpotce.git
synced 2025-04-29 19:58:52 +00:00
24 lines
628 B
Text
24 lines
628 B
Text
![]() |
FROM alpine
|
||
|
MAINTAINER MO
|
||
|
|
||
|
# Setup env and apt
|
||
|
RUN apk -U upgrade && \
|
||
|
apk add bash build-base git nodejs nodejs-npm openssh-client python procps && \
|
||
|
|
||
|
# Setup user
|
||
|
addgroup -g 2000 wetty && \
|
||
|
adduser -S -s /bin/bash -u 2000 -D -g 2000 wetty && \
|
||
|
|
||
|
# Get and install packages
|
||
|
mkdir -p /app/ && \
|
||
|
cd /app/ && \
|
||
|
npm install https://github.com/t3chn0m4g3/wetty && \
|
||
|
|
||
|
# Clean up
|
||
|
apk del build-base git nodejs-npm python
|
||
|
|
||
|
# Start elasticsearch-head
|
||
|
WORKDIR /app
|
||
|
USER wetty
|
||
|
CMD /usr/bin/node /app/node_modules/wetty/app.js -p 64300 --host 127.0.0.1 --sshhost 127.0.0.1 --sshport 64295 --sshuser $MY_SSHUSER
|