7 lines
212 B
Docker
7 lines
212 B
Docker
FROM ubuntu:latest
|
|
RUN apt-get update && apt-get install -y nginx
|
|
COPY config/nginx.conf /etc/nginx/nginx.conf
|
|
COPY public/index.html /usr/share/nginx/html/index.html
|
|
EXPOSE 80
|
|
CMD ["nginx", "-g", "daemon off;"]
|