Leonardo Amaral
6addf7a778
All checks were successful
Build VMCli with PowerShell / Build-VMCli (push) Successful in 4m33s
Signed-off-by: Leonardo Amaral <contato@leonardoamaral.com.br>
17 lines
462 B
Docker
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"]
|