diff options
author | David Li <li.davidm96@gmail.com> | 2015-11-10 10:08:01 -0500 |
---|---|---|
committer | David Li <li.davidm96@gmail.com> | 2015-11-10 10:08:01 -0500 |
commit | 893f8cff53e65515a110de8e9c4c9e00079ab003 (patch) | |
tree | 2b2505269ba0882d7f2e0e79e71895b3c68571b7 /tt-rss/Dockerfile | |
parent | 51ff7bccb58563ef80db43b57559d8c012348e99 (diff) |
Begin Dockerfile setup
Diffstat (limited to 'tt-rss/Dockerfile')
-rw-r--r-- | tt-rss/Dockerfile | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/tt-rss/Dockerfile b/tt-rss/Dockerfile index e69de29..7826293 100644 --- a/tt-rss/Dockerfile +++ b/tt-rss/Dockerfile @@ -0,0 +1,5 @@ +FROM gliderlabs/alpine:3.2 +RUN apk --update add nginx +COPY nginx.conf /etc/nginx/nginx.conf +COPY tt-rss.conf /etc/nginx/sites-enabled/tt-rss.conf +ENTRYPOINT ["nginx", "-g", "daemon off;"] |