mirror of
https://github.com/kirill-markin/repo-to-text.git
synced 2025-12-06 03:22:23 -08:00
13 lines
244 B
Docker
13 lines
244 B
Docker
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"]
|