mirror of
https://git.sakamoto.pl/laudom/http.sh.git
synced 2025-09-17 07:23:45 +02:00
15 lines
259 B
Docker
15 lines
259 B
Docker
FROM alpine:3.14
|
|
|
|
RUN apk update \
|
|
&& apk add sed xxd grep findutils file nmap-ncat socat jq bash file curl
|
|
|
|
WORKDIR /httpsh
|
|
COPY . .
|
|
|
|
EXPOSE 1337
|
|
VOLUME /httpsh/config
|
|
VOLUME /httpsh/app
|
|
VOLUME /httpsh/storage
|
|
VOLUME /httpsh/secret
|
|
|
|
CMD ["/httpsh/http.sh"]
|