Implemented code for the first test version. Added Docker funtionality. Define data location in compose and run: docker compose up Removed test data from the repository.
11 lines
137 B
Docker
11 lines
137 B
Docker
FROM alpine
|
|
RUN apk add --no-cache \
|
|
python3 \
|
|
py3-yaml \
|
|
graphviz
|
|
|
|
WORKDIR /code
|
|
COPY code/ .
|
|
|
|
CMD ["python3", "puudot.py"]
|