geo3dp/Dockerfile

17 lines
314 B
Text
Raw Normal View History

2025-05-17 00:14:02 -07:00
FROM python:3.13.3-bookworm
WORKDIR /app
RUN apt-get update && apt-get install -y openscad libgdal-dev
RUN python3 -m pip install setuptools wheel markupsafe numpy
COPY requirements.txt .
RUN python3 -m pip install -r requirements.txt
COPY src src
VOLUME /app/data
ENTRYPOINT ["python3", "src/__init__.py"]