Aktualizovat Dockerfile
Build ts3proxy / Explore-Gitea-Actions (push) Successful in 4m40s Details

This commit is contained in:
Radim Lipovčan 2023-11-17 16:52:02 +01:00
parent 80eb92a245
commit 4539148d0b
1 changed files with 3 additions and 2 deletions

View File

@ -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"]
ENTRYPOINT ["python3 -m ts3proxy"]