mirror of https://github.com/moparisthebest/xeps
You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
6 lines
227 B
Plaintext
6 lines
227 B
Plaintext
![]()
3 years ago
|
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
|