File tree 3 files changed +3
-11
lines changed
3 files changed +3
-11
lines changed Original file line number Diff line number Diff line change 7
7
"corejs" : " 3"
8
8
}
9
9
]
10
- ],
11
- "plugins" : [
12
- " @babel/plugin-proposal-class-properties"
13
10
]
14
11
}
Original file line number Diff line number Diff line change @@ -45,15 +45,15 @@ RUN groupdel dialout; \
45
45
# Install persistent & runtime dependencies
46
46
RUN set -eux; \
47
47
apt-get update; \
48
- apt-get install --no-install-recommends -y git netcat procps; \
48
+ apt-get install --no-install-recommends -y git netcat-traditional procps; \
49
49
rm -rf /var/lib/apt/lists/*
50
50
51
51
# Install media utilities
52
52
RUN set -eux; \
53
53
apt-get update; \
54
54
apt-get install --no-install-recommends -y ffmpeg mplayer; \
55
55
apt-get install -y python3-pip; \
56
- pip install git+https://github.com/flutterfromscratch/audio-offset-finder.git; \
56
+ pip install git+https://github.com/flutterfromscratch/audio-offset-finder.git --break-system-packages ; \
57
57
rm -rf /var/lib/apt/lists/*
58
58
59
59
# Install PHP extensions
Original file line number Diff line number Diff line change 2
2
3
3
set -e
4
4
5
- if [ " $1 " = ' node ' ] || [ " $1 " = ' npm' ]; then
5
+ if [ " $1 " = ' npm' ]; then
6
6
npm install
7
-
8
- >&2 echo " Waiting for app to be ready..."
9
- until nc -z ${FPM_HOST} ${FPM_PORT} ; do
10
- sleep 1
11
- done
12
7
fi
13
8
14
9
exec docker-entrypoint.sh " $@ "
You can’t perform that action at this time.
0 commit comments