# file Dockerfile
FROM debian

RUN apt-get update && apt-get install -y netcat
WORKDIR /app
COPY start_cmd.sh .
RUN mkfifo /app/netcat_fifo
RUN echo "hi there"
CMD ["/app/start_cmd.sh"]

