Skip to content

Commit 1433a91

Browse files
committed
Fix build errors
1 parent 7bb1c12 commit 1433a91

File tree

3 files changed

+3
-11
lines changed

3 files changed

+3
-11
lines changed

.babelrc

-3
Original file line numberDiff line numberDiff line change
@@ -7,8 +7,5 @@
77
"corejs": "3"
88
}
99
]
10-
],
11-
"plugins": [
12-
"@babel/plugin-proposal-class-properties"
1310
]
1411
}

Dockerfile

+2-2
Original file line numberDiff line numberDiff line change
@@ -45,15 +45,15 @@ RUN groupdel dialout; \
4545
# Install persistent & runtime dependencies
4646
RUN set -eux; \
4747
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; \
4949
rm -rf /var/lib/apt/lists/*
5050

5151
# Install media utilities
5252
RUN set -eux; \
5353
apt-get update; \
5454
apt-get install --no-install-recommends -y ffmpeg mplayer; \
5555
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; \
5757
rm -rf /var/lib/apt/lists/*
5858

5959
# Install PHP extensions

docker/assets-entrypoint.sh

+1-6
Original file line numberDiff line numberDiff line change
@@ -2,13 +2,8 @@
22

33
set -e
44

5-
if [ "$1" = 'node' ] || [ "$1" = 'npm' ]; then
5+
if [ "$1" = 'npm' ]; then
66
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
127
fi
138

149
exec docker-entrypoint.sh "$@"

0 commit comments

Comments
 (0)