All checks were successful
Build Container: Debian SteamCMD / Build Container Image: container:debian-steamcmd (debian-steamcmd) (push) Successful in 5m44s
31 lines
968 B
Docker
31 lines
968 B
Docker
FROM --platform=$TARGETOS/$TARGETARCH git.anomalous.dev/57_wolve/container:laravel-roadrunner
|
|
|
|
LABEL author="William Gill" maintainer="william.gill@anomalous.dev"
|
|
|
|
LABEL org.opencontainers.image.source="https://git.anomalous.dev/57_Wolve/container"
|
|
LABEL org.opencontainers.image.licenses=MIT
|
|
|
|
USER root
|
|
|
|
RUN apt-get update -y && apt-get dist-upgrade -y
|
|
RUN apt-get install -y locales
|
|
RUN update-locale lang=en_US.UTF-8 \
|
|
&& dpkg-reconfigure --frontend noninteractive locales \
|
|
&& useradd -m -d /home/container -s /bin/bash container
|
|
|
|
COPY ./install.sh /install.sh
|
|
RUN chmod +x /install.sh
|
|
RUN /install.sh
|
|
RUN rm -rf /install.sh
|
|
|
|
COPY ./nginx.conf /etc/nginx/nginx.conf
|
|
|
|
USER container
|
|
ENV USER=container HOME=/home/container
|
|
ENV DEBIAN_FRONTEND noninteractive
|
|
|
|
WORKDIR /home/container
|
|
|
|
CMD ["/bin/bash"]
|
|
|
|
EXPOSE 80 |