FROM denoland/deno:1.45.5
WORKDIR /app
RUN apt update && apt install -y socat
COPY ./ /app/
ENV DOCKER="1"
ENTRYPOINT [ "./cli.sh", "run" ]