mirror of
https://github.com/bellingcat/octosuite.git
synced 2026-06-11 04:48:34 +03:00
15 lines
199 B
Docker
15 lines
199 B
Docker
# syntax=docker/dockerfile:1
|
|
|
|
FROM python:latest
|
|
|
|
WORKDIR /app
|
|
|
|
COPY . .
|
|
|
|
RUN pip install --upgrade pip
|
|
RUN pip install build
|
|
RUN python -m build
|
|
RUN pip install dist/*.whl
|
|
|
|
ENTRYPOINT ["octosuite"]
|