clacksme/Dockerfile

23 lines
414 B
Docker
Raw Permalink Normal View History

2022-12-28 15:38:52 +00:00
FROM python:3.11-slim-bullseye AS builder
RUN pip install --no-cache-dir --upgrade pip setuptools wheel
WORKDIR /usr/src/app
COPY . .
RUN pip wheel . --wheel-dir /wheels --find-links /wheels
FROM python:3.11-slim-bullseye AS run
COPY --from=builder /wheels /wheels
RUN pip --no-cache-dir install --find-links /wheels --no-index clacksme
VOLUME /data
WORKDIR /data
CMD ["clacksme","-s","/data/store.db"]