fix typo;

Signed-off-by: Jess Frazelle <acidburn@google.com>
This commit is contained in:
Jess Frazelle
2016-10-07 23:38:19 -07:00
parent 78ecf697cf
commit 4b3992cb9c
2 changed files with 13 additions and 1 deletions

12
gitweb/Dockerfile Normal file
View File

@@ -0,0 +1,12 @@
FROM nginx:latest
RUN apt-get update && apt-get install -y \
fcgiwrap \
gitweb \
--no-install-recommends \
&& rm -rf /var/lib/apt/lists/* \
&& mv /usr/share/gitweb /var/www/
COPY nginx /etc/nginx
CMD service fcgiwrap start && nginx -g "daemon off;"