Files
BrickTracker/Dockerfile
2025-09-23 16:42:03 +02:00

15 lines
306 B
Docker

FROM python:3-slim
WORKDIR /app
# Bricktracker
COPY . .
# Fix line endings and set executable permissions for entrypoint script
RUN sed -i 's/\r$//' entrypoint.sh && chmod +x entrypoint.sh
# Python library requirements
RUN pip --no-cache-dir install -r requirements.txt
ENTRYPOINT ["./entrypoint.sh"]