13 lines
296 B
Docker
13 lines
296 B
Docker
|
|
FROM --platform=${ARCH} nginx
|
|
EXPOSE 80
|
|
|
|
# actual web content
|
|
COPY www/ /usr/share/nginx/html
|
|
RUN chmod -R +rX /usr/share/nginx/html
|
|
|
|
# nginx config files
|
|
COPY conf/nginx.conf /etc/nginx/nginx.conf
|
|
COPY conf/default.conf /etc/nginx/conf.d/default.conf
|
|
COPY conf/mime.types /etc/nginx/mime.types
|