radames commited on
Commit
7864eaa
1 Parent(s): 4929c44
Files changed (1) hide show
  1. Dockerfile +3 -8
Dockerfile CHANGED
@@ -1,8 +1,3 @@
1
- FROM debian:latest
2
-
3
- RUN apt-get update && apt-get install --no-install-recommends -y nginx; \
4
- echo "daemon off;" >> /etc/nginx/nginx.conf
5
-
6
- EXPOSE 80
7
-
8
- CMD ./usr/sbin/nginx
 
1
+ FROM nginx
2
+ COPY ./nginx.conf /etc/nginx/conf.d/default.conf
3
+ COPY . /usr/share/nginx/html