mirror of
https://github.com/moparisthebest/xeps
synced 2024-11-04 16:35:07 -05:00
6 lines
227 B
Docker
6 lines
227 B
Docker
|
FROM nginx:1-alpine
|
||
|
RUN mkdir /usr/share/nginx/html/extensions/
|
||
|
COPY build/ /usr/share/nginx/html/extensions/
|
||
|
RUN sed -ri '/root\s+\/usr\/share\/nginx\/html/s/^(.+)$/\1\nautoindex on;/' /etc/nginx/conf.d/default.conf
|
||
|
EXPOSE 80
|