mirror of
https://github.com/miaowware/qrm2.git
synced 2024-11-21 23:45:16 -05:00
32 lines
818 B
Docker
32 lines
818 B
Docker
FROM ghcr.io/void-linux/void-musl-full
|
|
|
|
COPY . /app
|
|
WORKDIR /app
|
|
|
|
ARG REPOSITORY=https://repo-fastly.voidlinux.org/current
|
|
ARG PKGS="cairo libjpeg-turbo"
|
|
ARG UID 1000
|
|
ARG GID 1000
|
|
|
|
RUN \
|
|
echo "**** update system ****" && \
|
|
xbps-install -Suy xbps -R ${REPOSITORY} && \
|
|
xbps-install -uy -R ${REPOSITORY} && \
|
|
echo "**** install system packages ****" && \
|
|
xbps-install -y -R ${REPOSITORY} ${PKGS} python3.11 && \
|
|
echo "**** install pip packages ****" && \
|
|
python3.11 -m venv botenv && \
|
|
botenv/bin/pip install -U pip setuptools wheel && \
|
|
botenv/bin/pip install -r requirements.txt && \
|
|
echo "**** clean up ****" && \
|
|
rm -rf \
|
|
/root/.cache \
|
|
/tmp/* \
|
|
/var/cache/xbps/*
|
|
|
|
ENV PYTHONUNBUFFERED 1
|
|
|
|
USER $UID:$GID
|
|
|
|
CMD ["/bin/sh", "run.sh", "--pass-errors"]
|