File: Dockerfile

package info (click to toggle)
python-prodigy 2.4.0-2
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 6,496 kB
  • sloc: python: 898; makefile: 10
file content (8 lines) | stat: -rw-r--r-- 297 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
#==============================================================================================
FROM python:3.12
WORKDIR /opt/software
COPY . .
RUN pip install .
WORKDIR /data
ENTRYPOINT [ "prodigy" ]
#==============================================================================================