UBERF-10599: Fix typo

Signed-off-by: Artem Savchenko <armisav@gmail.com>
This commit is contained in:
Artem Savchenko 2025-05-15 17:04:25 +07:00
parent 8b7174ce38
commit 5f2243b45b

View File

@ -2,7 +2,7 @@ FROM hardcoreeng/base:v20250310
WORKDIR /usr/src/app
COPY package.json ./
# Install ws, since it is external dependency and it not included in the base image
# Install ws, since it is external dependency and it is not included in the base image
RUN WS_VERSION=$(grep -o '"ws": *"[^"]*"' package.json | grep -o '[0-9][^"]*' | head -1) && \
if [ -z "$WS_VERSION" ]; then WS_VERSION="8.18.0"; fi && \
echo "Installing ws version: $WS_VERSION" && \