diff --git a/Dockerfile b/Dockerfile index 42568e7..5b9f93a 100644 --- a/Dockerfile +++ b/Dockerfile @@ -2,15 +2,15 @@ FROM python:3.11-slim WORKDIR /app -COPY 05_scripts/requirements.txt . +COPY requirements.txt . RUN apt-get update && apt-get install -y --no-install-recommends ffmpeg && rm -rf /var/lib/apt/lists/* RUN pip install --no-cache-dir -r requirements.txt -COPY 05_scripts/kobrax_moonraker_bridge.py . -COPY 05_scripts/env_loader.py . -COPY 05_scripts/kobrax_client.py . -COPY 05_scripts/anycubic_slicer.crt . -COPY 05_scripts/anycubic_slicer.key . +COPY kobrax_moonraker_bridge.py . +COPY env_loader.py . +COPY kobrax_client.py . +COPY anycubic_slicer.crt . +COPY anycubic_slicer.key . EXPOSE 7125