mirror of
https://git.sakamoto.pl/laudom/http.sh.git
synced 2025-09-17 15:33:44 +02:00
14 lines
258 B
Docker
14 lines
258 B
Docker
FROM alpine:3.21
|
|
|
|
RUN apk upgrade -U && apk add bash sed grep nmap-ncat socat file findutils jq curl argon2
|
|
|
|
WORKDIR /httpsh
|
|
COPY . .
|
|
|
|
EXPOSE 1337
|
|
VOLUME /httpsh/app
|
|
VOLUME /httpsh/config
|
|
VOLUME /httpsh/storage
|
|
VOLUME /httpsh/secret
|
|
|
|
CMD ["/httpsh/http.sh"]
|