Added localized dockerized build instructions with documentation

This commit is contained in:
Alden Do Rosario 2024-12-09 12:09:01 -05:00
parent 07521f06ca
commit 2759fd3640
3 changed files with 50 additions and 0 deletions

13
Dockerfile Normal file
View file

@ -0,0 +1,13 @@
FROM python:3.11-slim
RUN apt-get update && apt-get install -y \
tree \
&& rm -rf /var/lib/apt/lists/*
RUN useradd -m -s /bin/bash user
WORKDIR /app
COPY . .
RUN pip install -e . && pip install pyperclip
ENTRYPOINT ["repo-to-text"]