Files
octosuite/Dockerfile
2022-12-02 23:15:26 +02:00

13 lines
197 B
Docker

# syntax=docker/dockerfile:1
FROM python:latest
WORKDIR /app
COPY . .
RUN pip install --upgrade pip && pip install build && python -m build
RUN pip install dist/*.whl
ENTRYPOINT ["octosuite"]