Fix Dockerfile: use direct pip install for asyncssh
All checks were successful
Build ts3query-proxy / build (push) Successful in 19s
All checks were successful
Build ts3query-proxy / build (push) Successful in 19s
This commit is contained in:
parent
7d8b899912
commit
baa4d685f4
1 changed files with 3 additions and 2 deletions
|
|
@ -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"]
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue