17 lines
436 B
Plaintext
17 lines
436 B
Plaintext
|
FROM docker.io/library/python:3-slim as catatonit
|
||
|
|
||
|
RUN apt update \
|
||
|
&& apt -y install catatonit
|
||
|
|
||
|
FROM docker.io/library/python:3-slim
|
||
|
|
||
|
COPY --from=catatonit /usr/libexec/podman/catatonit /catatonit
|
||
|
ADD https://raw.githubusercontent.com/simon-budig/woof/woof-20220202/woof /usr/bin/woof
|
||
|
RUN mkdir /data
|
||
|
|
||
|
WORKDIR /data
|
||
|
EXPOSE 8008
|
||
|
|
||
|
ENTRYPOINT ["/catatonit", "--"]
|
||
|
CMD ["/usr/bin/woof", "-i", "0.0.0.0", "-p", "8008", "-c", "1", "-U"]
|