Upgrade to Pro — share decks privately, control downloads, hide ads and more …

Containers'n stuff

Andreas Mosti
October 04, 2021
21

Containers'n stuff

Intro to containers and how to secure them.

Andreas Mosti

October 04, 2021
Tweet

Transcript

  1. FROM MAVEN-JDK11 AS BUILD COPY src/ . RUN mvn package

    FROM JRE11 AS RUNTIME COPY –FROM=BUILD app.jar CMD app.jar