httb/Dockerfile
Arthur Khachaturov 86f036d8cc
chore: minor edits
2024-07-26 15:40:30 +03:00

7 lines
182 B
Docker

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