mirror of https://github.com/ekimekim/wubloader
You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
23 lines
868 B
Docker
23 lines
868 B
Docker
FROM alpine:3.14
|
|
# dependencies needed for compiling c extensions
|
|
# also busybox-extras for telnet for easier use of backdoor
|
|
RUN apk --update add py3-pip g++ python3-dev libffi-dev musl-dev file make busybox-extras
|
|
|
|
# Install gevent so that we don't need to re-install it when common changes
|
|
RUN pip install gevent
|
|
|
|
# Install girc, it's not really properly published on pypi so we pull it in via submodule
|
|
COPY chat_archiver/girc /tmp/girc
|
|
RUN pip install /tmp/girc && rm -r /tmp/girc
|
|
|
|
# Install common lib first as it changes less
|
|
COPY common /tmp/common
|
|
RUN pip install /tmp/common && rm -r /tmp/common
|
|
|
|
# Actual application
|
|
COPY chat_archiver /tmp/archiver
|
|
RUN pip install /tmp/archiver && rm -r /tmp/archiver
|
|
|
|
LABEL org.opencontainers.image.source https://github.com/dbvideostriketeam/wubloader
|
|
ENTRYPOINT ["python3", "-m", "chat_archiver", "--base-dir", "/mnt"]
|