Files
octosuite/Dockerfile
2022-10-24 17:52:55 +05:30

15 lines
167 B
Docker

# syntax=docker/dockerfile:1
FROM python:latest
WORKDIR /app
COPY . .
RUN python setup.py sdist bdist_wheel
RUN pip install dist/*.whl
ENTRYPOINT ["octosuite"]