mirror of
https://github.com/davegallant/rfd-notify.git
synced 2025-08-05 08:13:39 +00:00
Bumps python from 3.11-alpine3.17 to 3.12-alpine3.17. --- updated-dependencies: - dependency-name: python dependency-type: direct:production ... Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
13 lines
305 B
Docker
13 lines
305 B
Docker
# syntax=docker/dockerfile:1
|
|
FROM python:3.12-alpine3.17
|
|
|
|
WORKDIR /app
|
|
|
|
COPY . .
|
|
|
|
RUN pip install --no-cache-dir poetry==1.3.2 && \
|
|
poetry export -f requirements.txt > /tmp/requirements.txt && \
|
|
pip install -r /tmp/requirements.txt
|
|
|
|
ENTRYPOINT ["python", "/app/rfd_notify/cli.py", "-c", "config.yml"]
|