Select Git revision
0018_auto_20221021_1109.py
-
Nico Vermaas authored
added filter for description added description to GUI added migration file updated documentation in README.md
Nico Vermaas authoredadded filter for description added description to GUI added migration file updated documentation in README.md
Code owners
Assign users and groups as approvers for specific file changes. Learn more.
Dockerfile 254 B
FROM ubuntu:20.04
# Just copy everything
COPY . /pypcc
RUN apt-get update && apt-get install -y python3 python3-pip python3-yaml git && \
pip3 install -r /pypcc/requirements.txt
WORKDIR /pypcc
# install pypcc package
RUN python3 setup.py install