
* Add MongoDB 8 Add yolk for MongoDB 8 * Add mongo 8 to the workflow file * Update README --------- Co-authored-by: Quinten <67589015+QuintenQVD0@users.noreply.github.com>
20 lines
596 B
Docker
20 lines
596 B
Docker
# ----------------------------------
|
|
# Environment: MongoDB
|
|
# ----------------------------------
|
|
FROM --platform=$TARGETOS/$TARGETARCH mongo:8-noble
|
|
|
|
LABEL author="Michael Parker" maintainer="parker@pterodactyl.io"
|
|
|
|
ENV DEBIAN_FRONTEND=noninteractive
|
|
|
|
RUN apt update -y \
|
|
&& apt install -y netcat iproute2 \
|
|
&& useradd -d /home/container -m container -s /bin/bash
|
|
|
|
USER container
|
|
ENV USER=container HOME=/home/container
|
|
WORKDIR /home/container
|
|
|
|
COPY ./entrypoint.sh /entrypoint.sh
|
|
CMD ["/bin/bash", "/entrypoint.sh"]
|