1
0
woof-docker/Containerfile
Leonardo Amaral 6addf7a778
All checks were successful
Build VMCli with PowerShell / Build-VMCli (push) Successful in 4m33s
FIx python path
Signed-off-by: Leonardo Amaral <contato@leonardoamaral.com.br>
2024-08-05 11:01:56 -03:00

17 lines
462 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/local/bin/python3", "/usr/bin/woof", "-i", "0.0.0.0", "-p", "8008", "-c", "1", "-U"]