We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 9ab7bae commit c8c728bCopy full SHA for c8c728b
hack/Dockerfile.nginx
@@ -4,7 +4,9 @@ FROM nginx:alpine
4
COPY target/uki.efi /usr/share/nginx/html/feos.uki
5
6
# Add MIME type for .uki files
7
-RUN echo 'types {\n application/efi uki;\n}' > /etc/nginx/mime.types
+RUN echo "types {" > /etc/nginx/mime.types
8
+RUN echo " application/efi uki;" >> /etc/nginx/mime.types
9
+RUN echo "}" >> /etc/nginx/mime.types
10
11
# Create a simple index page
12
RUN echo '<html><body><h1>FeOS UKI Server</h1><p><a href="/feos.uki">Download FeOS UKI (x86_64)</a></p></body></html>' > /usr/share/nginx/html/index.html
0 commit comments