ts3proxy-docker-build/Dockerfile
Radim Lipovčan 169bde8c72
All checks were successful
Build ts3proxy / Explore-Gitea-Actions (push) Successful in 45s
Aktualizovat Dockerfile
2023-11-17 16:58:52 +01:00

9 lines
275 B
Docker

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/*
RUN mkdir /opt/ts3proxy
WORKDIR /opt/ts3proxy
COPY . .
RUN bash setup.sh
ENTRYPOINT ["bash","python3","-m","ts3proxy"]