http.sh/Dockerfile

16 lines
259 B
Docker
Raw Normal View History

2021-09-03 21:47:27 +02:00
FROM alpine:3.14
2021-01-10 05:09:18 +01:00
RUN apk update \
2021-09-03 21:47:27 +02:00
&& apk add sed xxd grep findutils file nmap-ncat socat jq bash file curl
2021-01-10 05:09:18 +01:00
2021-11-10 23:50:33 +01:00
WORKDIR /httpsh
2021-01-10 05:09:18 +01:00
COPY . .
EXPOSE 1337
2021-11-10 23:50:33 +01:00
VOLUME /httpsh/config
VOLUME /httpsh/app
VOLUME /httpsh/storage
VOLUME /httpsh/secret
2021-01-10 05:09:18 +01:00
2021-11-10 23:50:33 +01:00
CMD ["/httpsh/http.sh"]