Add applications/laravel-roadrunner/Dockerfile
All checks were successful
Build Container: Debian SteamCMD / Build Container Image: container:debian-steamcmd (debian-steamcmd) (push) Successful in 5m44s
All checks were successful
Build Container: Debian SteamCMD / Build Container Image: container:debian-steamcmd (debian-steamcmd) (push) Successful in 5m44s
This commit is contained in:
31
applications/laravel-roadrunner/Dockerfile
Normal file
31
applications/laravel-roadrunner/Dockerfile
Normal file
@@ -0,0 +1,31 @@
|
||||
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
|
||||
Reference in New Issue
Block a user