Remove all references to the DEPENDENCIES file.

pull/8806/head
Khushboo Vashi 2025-05-29 16:01:56 +05:30
parent 1ad8736d72
commit 58715daf10
4 changed files with 1 additions and 4 deletions

View File

@ -192,7 +192,6 @@ COPY pkg/docker/entrypoint.sh /entrypoint.sh
# License files
COPY LICENSE /pgadmin4/LICENSE
COPY DEPENDENCIES /pgadmin4/DEPENDENCIES
# Install runtime dependencies and configure everything in one RUN step
RUN apk add --no-cache \

View File

@ -239,7 +239,6 @@ REM Main build sequence Ends
ECHO Staging license files...
COPY "%WD%\LICENSE" "%BUILDROOT%\" > nul || EXIT /B 1
COPY "%WD%\DEPENDENCIES" "%BUILDROOT%\" > nul || EXIT /B 1
ECHO Creating config_distro.py
ECHO SERVER_MODE = False > "%BUILDROOT%\web\config_distro.py"

View File

@ -242,7 +242,6 @@ _copy_code() {
# License files
cp "${SOURCEDIR}/LICENSE" "${SERVERROOT}/usr/${APP_NAME}/"
cp "${SOURCEDIR}/DEPENDENCIES" "${SERVERROOT}/usr/${APP_NAME}/"
# Web setup script
mkdir -p "${WEBROOT}/usr/${APP_NAME}/bin/"

View File

@ -90,7 +90,7 @@ do
done
cd ../
for FILE in LICENSE DEPENDENCIES README.md
for FILE in LICENSE README.md
do
echo Adding ${FILE}
# We use tar here to preserve the path, as Mac (for example) doesn't support cp --parents