Fix Dockerfile: use direct pip install for asyncssh
All checks were successful
Build ts3query-proxy / build (push) Successful in 19s

This commit is contained in:
Joshua Hirsig 2026-03-16 22:24:55 +01:00
parent 7d8b899912
commit baa4d685f4

View file

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