Radim Lipovčan
43a9a5c1be
Some checks failed
Build ts3proxy / Explore-Gitea-Actions (push) Failing after 1m32s
6 lines
172 B
Docker
6 lines
172 B
Docker
FROM ubuntu:22.04 as base
|
|
RUN apt-get update && \
|
|
apt-get install python3-yaml -y && \
|
|
rm -rf /var/lib/apt/lists/*
|
|
RUN sudo ./setup.sh
|
|
ENTRYPOINT ["ts3proxy"] |