sed -i -- '/#load-module\ module-native-protocol-tcp/s/^#//g /usr/local/opt/pulseaudio/etc/pulse/default.pa
I get the sed: /usr/local/opt/pulseaudio/etc/pulse/default.pa: No such file or directory.
The opt folder does not exist in my directory, so does pulseaudio.
Next,
docker build -t wine .
fails on 5th step with:
`[+] Building 2.9s (8/9)
=> [internal] load build definition from Dockerfile 0.0s
=> => transferring dockerfile: 37B 0.0s
=> [internal] load .dockerignore 0.0s
=> => transferring context: 34B 0.0s
=> [internal] load metadata for docker.io/library/ubuntu:18.04 0.5s
=> [1/6] FROM docker.io/library/ubuntu:18.04@sha256:3b8692dc4474d4f6043f 0.0s
=> CACHED [2/6] RUN apt update && apt install -y wget gnupg software-pro 0.0s
=> CACHED [3/6] RUN dpkg --add-architecture i386 0.0s
=> CACHED [4/6] RUN wget -nc https://dl.winehq.org/wine-builds/winehq.ke 0.0s
=> ERROR [5/6] RUN add-apt-repository 'deb https://dl.winehq.org/wine-bu 2.3s
First, when I run
sed -i -- '/#load-module\ module-native-protocol-tcp/s/^#//g /usr/local/opt/pulseaudio/etc/pulse/default.pa
I get the
sed: /usr/local/opt/pulseaudio/etc/pulse/default.pa: No such file or directory
. Theopt
folder does not exist in my directory, so doespulseaudio
.Next,
docker build -t wine .
fails on 5th step with:
`[+] Building 2.9s (8/9)
=> [internal] load build definition from Dockerfile 0.0s => => transferring dockerfile: 37B 0.0s => [internal] load .dockerignore 0.0s => => transferring context: 34B 0.0s => [internal] load metadata for docker.io/library/ubuntu:18.04 0.5s => [1/6] FROM docker.io/library/ubuntu:18.04@sha256:3b8692dc4474d4f6043f 0.0s => CACHED [2/6] RUN apt update && apt install -y wget gnupg software-pro 0.0s => CACHED [3/6] RUN dpkg --add-architecture i386 0.0s => CACHED [4/6] RUN wget -nc https://dl.winehq.org/wine-builds/winehq.ke 0.0s => ERROR [5/6] RUN add-apt-repository 'deb https://dl.winehq.org/wine-bu 2.3s
Sounds like it is trying to call some internal ubuntu processes, but I am running on Mac OS Big Sur.
Cheers in advance!