Fix Dockerfile: copy proxy.py before pip install
Some checks failed
Build ts3query-proxy / build (push) Failing after 25s

This commit is contained in:
Joshua Hirsig 2026-03-16 22:23:14 +01:00
parent a22c26ef3a
commit eb4edd0cb7

View file

@ -1,9 +1,8 @@
FROM python:3.12-slim
WORKDIR /app
COPY pyproject.toml .
COPY pyproject.toml proxy.py ./
RUN pip install --no-cache-dir .
COPY proxy.py .
EXPOSE 10011
CMD ["python", "-u", "proxy.py"]