mirror of
https://github.com/r4sas/PBinCLI
synced 2025-01-08 22:08:00 +00:00
12 lines
192 B
Docker
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" ]
|