1
0
woof-docker/Containerfile
Leonardo Amaral af90aa2407
All checks were successful
Build VMCli with PowerShell / Build-VMCli (push) Successful in 5m25s
Initial release
Signed-off-by: Leonardo Amaral <contato@leonardoamaral.com.br>
2024-08-05 10:31:49 -03:00

17 lines
436 B
Docker

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"]