Merge pull request #11858 from vector-im/hs/wasm-docker

Support application/wasm in Docker image
pull/11891/head
Will Hunt 2020-01-15 18:02:39 +00:00 committed by GitHub
commit 044720b7e5
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 3 additions and 0 deletions

View File

@ -30,5 +30,8 @@ FROM nginx:alpine
COPY --from=builder /src/webapp /app
# Insert wasm type into Nginx mime.types file so they load correctly.
RUN sed -i '3i\ \ \ \ application/wasm wasm\;' /etc/nginx/mime.types
RUN rm -rf /usr/share/nginx/html \
&& ln -s /app /usr/share/nginx/html