Files
octosuite/Dockerfile
2022-12-01 03:13:33 +02:00

17 lines
201 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"]