chore: Fix executable permissions on scripts in Docker image
This commit is contained in:
parent
cc6bc164c7
commit
38996b105a
|
|
@ -10,11 +10,16 @@ ENV APPSMITH_CLOUD_SERVICES_BASE_URL=${APPSMITH_CLOUD_SERVICES_BASE_URL}
|
|||
|
||||
ARG APPSMITH_SEGMENT_CE_KEY
|
||||
ENV APPSMITH_SEGMENT_CE_KEY=${APPSMITH_SEGMENT_CE_KEY}
|
||||
#Create the plugins directory
|
||||
RUN mkdir -p ./editor ./rts ./backend/plugins
|
||||
|
||||
COPY deploy/docker/fs /
|
||||
|
||||
RUN <<END
|
||||
mkdir -p ./editor ./rts ./backend/plugins
|
||||
|
||||
# Ensure all *.sh scripts are executable.
|
||||
find . -name node_modules -prune -or -type f -name '*.sh' -print -exec chmod +x '{}' ';'
|
||||
END
|
||||
|
||||
#Add the jar to the container
|
||||
COPY ${JAR_FILE} backend/server.jar
|
||||
COPY ${PLUGIN_JARS} backend/plugins/
|
||||
|
|
|
|||
Loading…
Reference in New Issue
Block a user