Skip to content
Snippets Groups Projects
Select Git revision
  • 38035b3900e261a95d8219205db3cae12190259c
  • main default protected
2 results

Dockerfile

Blame
  • Dockerfile 263 B
    FROM hackinglab/alpine-base:3.2.0
    
    LABEL maintainer=<ivan.buetler@hacking-lab.com>
    
    COPY root /
    RUN apk update && apk add --no-cache socat unit sudo curl python3
    RUN apk add py3-pip
    RUN pip install inputimeout
    RUN chmod +x /entry.sh /app/server.py
    
    EXPOSE 80 1345