Explorar el Código

更新 'Dockerfile'

iamsee hace 4 años
padre
commit
bd9fee48b7
Se han modificado 1 ficheros con 2 adiciones y 5 borrados
  1. 2 5
      Dockerfile

+ 2 - 5
Dockerfile

@@ -10,9 +10,6 @@ ENV SPRINGBOOT_OPTS="--spring.profiles.active=prod"
 
 EXPOSE 2021
 
-COPY . /test
-RUN cd /test && ls
-RUN ls /test/railway-admin
-RUN ls /test/railway-admin/target
-COPY $APP_NAME/target/$APP_NAME-*.jar /app.jar
+
+COPY $APP_NAME/target/$APP_NAME.jar /app.jar
 ENTRYPOINT exec java $JAVA_OPTS -Djava.security.egd=file:/dev/./urandom -jar /app.jar $SPRINGBOOT_OPTS