dir2md / Dockerfile
Flamehaven's picture
Initial commit: Dir2md open-core project
d466b7d
raw
history blame
113 Bytes
FROM python:3.11-slim
WORKDIR /work
COPY . /work
RUN pip install --no-cache-dir .
ENTRYPOINT ["dir2md"]
CMD ["."]