* core workflows of git - branch, clone, commit, pull, merge, status, log * Rehydrate file system before merge operation * Add logic to handle merge conflict for merge and pull flow * Add defaultBranch to listBranch API * Add Unit tests for git commands * Upgrade JGit dependencies to fix the security issue * Git command tests * Revert unwanted changes and update delete application flow * Disable git feature until the FE changes are merged Co-authored-by: Abhijeet <ABHI.NAGARNAIK@GMAIL.COM>
28 lines
844 B
Docker
28 lines
844 B
Docker
#When you are building, name it appsmith-server which is how it is referenced in docker-compose.yml
|
|
|
|
FROM adoptopenjdk/openjdk11:jre-11.0.10_9-alpine
|
|
|
|
LABEL maintainer="tech@appsmith.com"
|
|
|
|
VOLUME /tmp
|
|
|
|
EXPOSE 8080
|
|
|
|
ARG JAR_FILE=./dist/server-*.jar
|
|
ARG PLUGIN_JARS=./dist/plugins/*.jar
|
|
ARG APPSMITH_SEGMENT_CE_KEY
|
|
ENV APPSMITH_SEGMENT_CE_KEY=${APPSMITH_SEGMENT_CE_KEY}
|
|
|
|
#Create the plugins directory
|
|
RUN mkdir -p /plugins
|
|
|
|
# Add entrypoint script and make it executable.
|
|
COPY entrypoint.sh /entrypoint.sh
|
|
RUN chmod +x /entrypoint.sh
|
|
|
|
#Add the jar to the container. Always keep this at the end. This is to ensure that all the things that can be taken
|
|
#care of via the cache happens. The following statement would lead to copy because of change in hash value
|
|
COPY ${JAR_FILE} server.jar
|
|
COPY ${PLUGIN_JARS} /plugins/
|
|
|
|
ENTRYPOINT ["/entrypoint.sh"] |