buildx/element/Dockerfile

9 lines
260 B
Docker
Raw Normal View History

2021-05-04 09:36:11 +00:00
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 \
2021-05-04 09:36:11 +00:00
&& ln -s /app /usr/share/nginx/html