Spaces:
Build error
Build error
| FROM openjdk:8 | |
| FROM maven:3.9.1 | |
| COPY pom.xml . | |
| COPY entrypoint.sh /entrypoint.sh | |
| EXPOSE 8350 | |
| RUN mvn clean install spring-boot:repackage | |
| RUN cd /target | |
| RUN java -jar fixedmanager-vue-2.4.0.jar | |
| # ENTRYPOINT ["java", "com.fixedasset.VueAdminApplication.Main"] | |
| # RUN cd /target | |
| # RUN java -jar fixedmanager-vue-2.4.0.jar | |
| # Make the script executable | |
| # RUN chmod 755 /entrypoint.sh | |
| # Set the entrypoint | |
| # ENTRYPOINT ["/entrypoint.sh"] |