23 lines
634 B
Docker
23 lines
634 B
Docker
FROM --platform=$TARGETOS/$TARGETARCH alpine:edge
|
|
|
|
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 tini
|
|
|
|
RUN adduser -D container
|
|
|
|
USER container
|
|
ENV USER=container HOME=/home/container
|
|
WORKDIR /home/container
|
|
|
|
STOPSIGNAL SIGINT
|
|
|
|
COPY --chown=container:container ./entrypoint.sh /entrypoint.sh
|
|
RUN chmod +x /entrypoint.sh
|
|
ENTRYPOINT ["/sbin/tini", "-g", "--"]
|
|
CMD ["/entrypoint.sh"]
|