1
0
mirror of https://git.sr.ht/~nicoco/slidge-whatsapp synced 2024-09-28 09:32:48 +00:00
slidge-whatsapp/Dockerfile
2023-05-02 16:35:30 +02:00

71 lines
1.9 KiB
Docker

FROM docker.io/nicocool84/slidge-builder AS base
ENV GOBIN="/usr/local/bin"
RUN echo "deb http://deb.debian.org/debian bullseye-backports main" > /etc/apt/sources.list.d/backports.list && \
apt update -y && \
apt install -yt bullseye-backports golang
RUN go install github.com/go-python/gopy@latest
RUN go install golang.org/x/tools/cmd/goimports@latest
ENV PATH="/root/.local/bin:$PATH"
COPY poetry.lock pyproject.toml /build/
RUN poetry export --without-hashes > requirements.txt
RUN python3 -m pip install --requirement requirements.txt
FROM base as go
COPY go.* .
COPY slidge_whatsapp/*.go .
RUN gopy build -output=generated -no-make=true .
# main container
FROM docker.io/nicocool84/slidge-base AS slidge-whatsapp
COPY --from=base /venv /venv
COPY ./slidge_whatsapp/*.py /venv/lib/python/site-packages/legacy_module/
COPY --from=go /build/generated /venv/lib/python/site-packages/legacy_module/generated
# dev container
FROM builder AS dev
USER root
COPY --from=docker.io/nicocool84/slidge-dev-prosody:latest /etc/prosody/certs/localhost.crt /usr/local/share/ca-certificates/
RUN update-ca-certificates
RUN pip install watchdog[watchmedo]
ENV SLIDGE_LEGACY_MODULE=slidge_whatsapp
#RUN ln -s /venv/lib/python3.11 /venv/lib/python
COPY ./watcher.py /
ENTRYPOINT python3 /build/build.py && python \
/watcher.py \
/venv/lib/python/site-packages/slidge_whatsapp \
python -m slidge\
--jid slidge.localhost\
--secret secret \
--debug
# wheel builder
# docker buildx build . --target wheel \
# --platform linux/arm64,linux/amd64 \
# -o ./dist/
FROM base AS builder-wheel
RUN pip install pybindgen
COPY go.* /build/
COPY README.md /build/
COPY slidge_whatsapp/*.py /build/slidge_whatsapp/
COPY slidge_whatsapp/*.go /build/slidge_whatsapp/
COPY build.py /build/
RUN poetry build
RUN ls -l ./dist
RUN python --version
FROM scratch as wheel
COPY --from=builder-wheel ./build/dist/* /