PBinCLI/Dockerfile
2018-06-29 16:08:25 +02:00

12 lines
192 B
Docker

FROM python:3
WORKDIR /usr/src/app
COPY requirements.txt ./
RUN pip install --no-cache-dir -r requirements.txt
COPY . .
RUN python setup.py install
ENTRYPOINT [ "/usr/local/bin/pbincli" ]