mirror of
https://github.com/jessfraz/dockerfiles.git
synced 2025-05-02 16:45:47 +02:00
13 lines
257 B
Docker
13 lines
257 B
Docker
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;"
|