Files
yolks/voice/mumble/Dockerfile
2022-10-09 20:48:48 +02:00

19 lines
505 B
Docker

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/ash", "/entrypoint.sh"]