HEX
Server: Apache
System: Linux webd004.cluster130.gra.hosting.ovh.net 5.15.206-ovh-vps-grsec-zfs-classid #1 SMP Fri May 15 02:41:25 UTC 2026 x86_64
User: frenchy (106757)
PHP: 7.4.33
Disabled: _dyuweyrj4,_dyuweyrj4r,dl
Upload Files
File: /home/frenchy/www/french-american.org/current/docker/nginx/Dockerfile
FROM ubuntu:18.04
ENV DEBIAN_FRONTEND noninteractive
RUN apt-get update  && apt-get -y upgrade && apt-get -y install wget zip &&  apt-get install -y nginx kmod curl && rm -rf /var/lib/apt/lists/* && \
    curl -sL https://deb.nodesource.com/setup_8.x | bash - && \
    apt-get install -y nodejs

EXPOSE 8080
COPY nginx.conf /etc/nginx/nginx.conf
RUN chown -R www-data:www-data /var/www
RUN chown -R www-data:www-data /var/lib/nginx


USER www-data

CMD ["nginx", "-g", "daemon off;"]