mirror of
https://github.com/sartography/SpiffWorkflow.git
synced 2026-03-13 08:00:46 +08:00
5 lines
190 B
Docker
5 lines
190 B
Docker
FROM python:python:3.12.1-slim-bookworm
|
|
RUN apt-get -y update && apt-get upgrade -yu
|
|
COPY . /tmp/SpiffWorkflow
|
|
RUN cd /tmp/SpiffWorkflow && make wheel && pip install dist/SpiffWorkflow*.whl
|