mirror of
https://gitlab.com/alemaire/buildx.git
synced 2025-01-10 18:43:29 +00:00
9 lines
260 B
Docker
9 lines
260 B
Docker
FROM nginx:1.20.0-alpine
|
|
|
|
COPY ./element /app
|
|
|
|
# Insert wasm type into Nginx mime.types file so they load correctly.
|
|
RUN sed -i '3i\ \ \ \ application/wasm wasm\;' /etc/nginx/mime.types \
|
|
&& rm -rf /usr/share/nginx/html \
|
|
&& ln -s /app /usr/share/nginx/html
|