mirror of
https://github.com/Steffo99/greed.git
synced 2024-11-21 13:34:18 +00:00
8bf23d4870
* Dockerfile refactoring * Update docker-image.yml * Update CodeQL workflow to match Steffo99/.github * Add testing workflow using `compileall` * Use release workflow from Steffo99/.github * Slightly refactor Dockerfile * Fix merge tool doing something weird --------- Co-authored-by: Stefano Pigozzi <me@steffo.eu>
28 lines
No EOL
1,002 B
Docker
28 lines
No EOL
1,002 B
Docker
FROM python:3.10-alpine AS dependencies
|
|
RUN apk add --update build-base python3-dev py-pip musl-dev
|
|
|
|
WORKDIR /usr/src/greed
|
|
COPY ./requirements.txt ./requirements.txt
|
|
RUN pip install --no-cache-dir --requirement requirements.txt
|
|
|
|
#############################################################################
|
|
|
|
FROM python:3.10-slim AS final
|
|
|
|
COPY --from=dependencies /usr/local/lib/python3.10/site-packages /usr/local/lib/python3.10/site-packages
|
|
|
|
WORKDIR /usr/src/greed
|
|
COPY . /usr/src/greed
|
|
|
|
ENTRYPOINT ["python", "-OO"]
|
|
CMD ["core.py"]
|
|
|
|
ENV PYTHONUNBUFFERED=1
|
|
ENV CONFIG_PATH="/etc/greed/config.toml"
|
|
ENV DB_ENGINE="sqlite:////var/lib/greed/database.sqlite"
|
|
|
|
LABEL org.opencontainers.image.title="greed"
|
|
LABEL org.opencontainers.image.description="A customizable, multilanguage Telegram shop bot"
|
|
LABEL org.opencontainers.image.licenses="AGPL-3.0-or-later"
|
|
LABEL org.opencontainers.image.url="https://github.com/Steffo99/greed/"
|
|
LABEL org.opencontainers.image.authors="Stefano Pigozzi <me@steffo.eu>" |