8 lines
249 B
Docker
8 lines
249 B
Docker
FROM docker.io/library/nginx:alpine
|
|
COPY index.html /usr/share/nginx/html/
|
|
COPY 50x.html /usr/share/nginx/html/
|
|
COPY assets/ /usr/share/nginx/html/assets/
|
|
COPY nginx.conf /etc/nginx/conf.d/default.conf
|
|
EXPOSE 8334
|
|
CMD ["nginx", "-g", "daemon off;"]
|