Radim Lipovčan
c53e912236
All checks were successful
Build ts3proxy / Explore-Gitea-Actions (push) Successful in 51s
9 lines
268 B
Docker
9 lines
268 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 ["python3","-m","ts3proxy"] |