httb/Dockerfile
2024-07-26 14:16:49 +03:00

7 lines
175 B
Docker

FROM debian:stable-slim
RUN apt-get update && apt-get install socat file -y
ENV HTTB_LIB_PATH="/usr/lib/httb"
WORKDIR ${HTTB_LIB_PATH}
COPY src/ .
WORKDIR /
CMD ["/bin/bash"]