mirror of
https://gitlab.com/MisterBiggs/hello-world-nginx.git
synced 2025-07-28 00:51:34 +00:00
13 lines
249 B
Docker
13 lines
249 B
Docker
# docker build -t mattes/hello-world-nginx .
|
|
# docker run -p 8090:80 mattes/hello-world-nginx
|
|
|
|
FROM ubuntu:14.04
|
|
RUN apt-get update
|
|
RUN apt-get install -y nginx
|
|
ADD nginx.conf /etc/nginx/nginx.conf
|
|
|
|
ADD ./www-data /www-data
|
|
|
|
EXPOSE 80
|
|
CMD ["nginx"]
|