5 lines
144 B
Docker
5 lines
144 B
Docker
FROM ubuntu:22.04 as base
|
|
RUN apt-get update && \
|
|
apt-get install python3-yaml && \
|
|
rm -rf /var/lib/apt/lists/*
|
|
ENTRYPOINT ["ts3proxy"] |