File: Dockerfile

package info (click to toggle)
python-croniter 2.0.7-3
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 336 kB
  • sloc: python: 3,122; makefile: 20; sh: 14
file content (12 lines) | stat: -rw-r--r-- 394 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
ARG PY_VER=3.12.1
FROM python:${PY_VER}
WORKDIR /app
ADD *.rst LICENSE MANIFEST.in *.txt *.cfg  *.py *.ini ./
ADD requirements/ ./requirements/
RUN mkdir src/ && touch src/__init__.py
RUN pip install -r req*/base.txt
RUN pip install -r req*/release.txt
RUN pip install -r req*/test.txt
ADD *.rst LICENSE MANIFEST.in *.txt *.sh *.cfg  *.py *.ini ./
ADD src/ src/
ENTRYPOINT /app/docker-entry.sh