Remove all references to the DEPENDENCIES file.
parent
1ad8736d72
commit
58715daf10
|
|
@ -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 \
|
||||
|
|
|
|||
1
Make.bat
1
Make.bat
|
|
@ -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"
|
||||
|
|
|
|||
|
|
@ -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/"
|
||||
|
|
|
|||
|
|
@ -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
|
||||
|
|
|
|||
Loading…
Reference in New Issue