ts3proxy-docker-build/Dockerfile

8 lines
195 B
Docker
Raw Normal View History

2023-11-17 16:36:33 +01:00
FROM ubuntu:22.04 as base
RUN apt-get update && \
apt-get install python3-yaml -y && \
rm -rf /var/lib/apt/lists/*
2023-11-17 16:46:43 +01:00
WORKDIR /opt/
COPY . .
2023-11-17 16:43:06 +01:00
RUN bash setup.sh
2023-11-17 11:26:13 +01:00
ENTRYPOINT ["ts3proxy"]