diff --git a/CHANGELOG.md b/CHANGELOG.md index c512e0afb67e..b1f7122c9e6b 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -41,6 +41,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 - Duplication of the cuboids when redraw them () - Some code issues in Deep Extreme Cut handler code () - UI fails when inactive user is assigneed to a task/job () +- Falsely successful `cvat_ui` image build in case of OOM error that leads to the default nginx welcome page + () ### Security diff --git a/Dockerfile.ui b/Dockerfile.ui index 513bc711d904..3bf5b66bfa36 100644 --- a/Dockerfile.ui +++ b/Dockerfile.ui @@ -1,4 +1,4 @@ -FROM node:lts-alpine AS cvat-ui +FROM node:lts-buster AS cvat-ui ARG http_proxy ARG https_proxy @@ -15,8 +15,6 @@ ENV TERM=xterm \ LANG='C.UTF-8' \ LC_ALL='C.UTF-8' -RUN apk add python3 g++ make - # Install dependencies COPY cvat-core/package*.json /tmp/cvat-core/ COPY cvat-canvas/package*.json /tmp/cvat-canvas/