stargem/Dockerfile

12 lines
241 B
Text
Raw Normal View History

2025-01-12 08:45:48 -05:00
FROM python:3.13-alpine
WORKDIR /opt/stargem
COPY . .
ENV PATH=$PATH:/root/.local/bin
RUN pip install pipx \
&& pipx install poetry \
&& poetry build \
&& pipx install dist/stargem*.whl
WORKDIR /capsule
ENTRYPOINT [ "stargem" ]