Files
octosuite/Dockerfile
Richard Mwewa e151f81d76 Update Dockerfile
Added docker commands to build Octosuite's wheel file with the python build library
2022-12-01 03:18:36 +02:00

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"]