mirror of
https://github.com/miaowware/qrm2.git
synced 2024-10-31 22:37:11 -04:00
80d6a989cc
Co-authored-by: 0x5c <dev@0x5c.io>
32 lines
847 B
Docker
32 lines
847 B
Docker
FROM ghcr.io/void-linux/void-linux:latest-mini-x86_64
|
|
LABEL org.opencontainers.image.source https://github.com/miaowware/qrm2
|
|
|
|
COPY . /app
|
|
WORKDIR /app
|
|
|
|
ARG REPOSITORY=https://repo-us.voidlinux.org/current
|
|
ARG PKGS="cairo libjpeg-turbo"
|
|
ARG UID 1000
|
|
ARG GID 1000
|
|
|
|
RUN \
|
|
echo "**** update system ****" && \
|
|
xbps-install -SuyM -R ${REPOSITORY} && \
|
|
echo "**** install system packages ****" && \
|
|
xbps-install -yM -R ${REPOSITORY} ${PKGS} python3 python3-pip && \
|
|
echo "**** install pip packages ****" && \
|
|
pip3 install -U pip setuptools wheel && \
|
|
pip3 install -r requirements.txt && \
|
|
echo "**** clean up ****" && \
|
|
rm -rf \
|
|
/root/.cache \
|
|
/tmp/* \
|
|
/var/cache/xbps/*
|
|
|
|
ENV PYTHON_BIN python3
|
|
ENV PYTHONUNBUFFERED 1
|
|
|
|
USER $UID:$GID
|
|
|
|
CMD ["/bin/sh", "run.sh", "--pass-errors", "--no-botenv"]
|