Spaces:
Build error
Build error
File size: 434 Bytes
f580b37 ceb767f f580b37 1cd97c2 0d8f572 5bee4ba 258a60a 4c09a85 ba263e0 7f0156e f580b37 105fd1e 33abd12 f580b37 105fd1e | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 | 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"] |