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

This commit is contained in:
Joshua Hirsig 2026-03-16 22:24:55 +01:00
parent eb4edd0cb7
commit 24d202a396

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"]