blob: b68f42f9a5808784b3ece3ef8d50703118231faf [file] [log] [blame]
FROM python:3.8
WORKDIR /code
COPY requirements.txt .
COPY dev-requirements.txt .
RUN pip install -r requirements.txt
RUN pip install -r dev-requirements.txt
COPY . .
RUN pip3 install .
ENV PYTHONPATH=/code:/code/scripts
ENTRYPOINT ["python", "/code/pwb.py"]
CMD ["version"]