add mumble image

This commit is contained in:
Michael Parker
2022-09-26 15:00:32 -04:00
parent a310a8c01b
commit d07eb520b5
3 changed files with 35 additions and 0 deletions

18
voice/mumble/Dockerfile Normal file
View File

@@ -0,0 +1,18 @@
FROM --platform=$TARGETOS/$TARGETARCH alpine:3.16
LABEL author="Michael Parker" maintainer="parker@pterodactyl.io"
LABEL org.opencontainers.image.source="https://github.com/pterodactyl/yolks"
LABEL org.opencontainers.image.licenses=MIT
## install dependencies
RUN apk add --no-cache murmur
RUN adduser -D container
USER container
ENV USER=container HOME=/home/container
WORKDIR /home/container
COPY ./entrypoint.sh /entrypoint.sh
CMD ["/bin/bash", "/entrypoint.sh"]