Entradas

Mostrando entradas de diciembre, 2019

Create a docker image from a spring boot project

In order to create a docker image from a spring boot project, First, your pom.xml has to be configured. <build> <plugins> <plugin> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-maven-plugin</artifactId> <configuration> <!-- Cofiguration for creating a docker image --> <image> <name>chamow01/${project.artifactId}</name> </image> </configuration> </plugin> </plugins> </build> Then, the next maven command needs to be applied, so spring boot uses paketo-buildpacks in order to create a docker image based on you Java code mvn spring-boot:build-image ... [INFO] > Running creator [INFO] [creator] ===> DETECTING [INFO] [creator] 6 of 24 buildpacks participating [INFO] [creator] paketo-buildpacks/ca-certificates 3.2.0 [INFO] [creator] paketo-buildpacks/bellsoft-liberica 9.3.2 [INFO]

Error librería de python con npm

Al utilizar npm, es posible que se obtenga un error debido a que no existe python instalado, esto se resuelve ejecutando las siguientes instrucciones. Error python: gyp verb check python checking for Python executable "python2" in the PATH gyp verb `which` failed Error: not found: python2 Solución: npm --add-python-to-path='true' --debug install --global windows-build-tools npm install --global node-gyp Fuentes: 1.  https://github.com/JeremyEnglert/JointsWP/issues/317