This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<!-- | |
Run the following file in Firefox and Chromium. | |
It has been observed, that createIIRFilter() takes around 50ms to complete in Chromium-based browsers on Linux (Ubuntu, Gnome, PulseAudio). | |
In Firefox, it takes <1ms. | |
createBiquadFilter() has been included as a reference. | |
It takes <1ms in both browsers. | |
--> | |
<!DOCTYPE html> | |
<html> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
FROM golang:1.14.0-alpine as builder | |
WORKDIR /src | |
RUN apk add --no-cache \ | |
git \ | |
ca-certificates | |
ARG CADDY_SOURCE_VERSION=pki |