diff --git a/Dockerfile b/Dockerfile index 97c6b99..abee565 100644 --- a/Dockerfile +++ b/Dockerfile @@ -2,7 +2,8 @@ FROM ubuntu:22.04 as base RUN apt-get update && \ apt-get install nano python3 python3-pip python3-yaml -y && \ rm -rf /var/lib/apt/lists/* -WORKDIR /opt/ +RUN mkdir /opt/ts3proxy +WORKDIR /opt/ts3proxy COPY . . RUN bash setup.sh -ENTRYPOINT ["ts3proxy"] \ No newline at end of file +ENTRYPOINT ["python3 -m ts3proxy"] \ No newline at end of file