Upgrade to Pro
— share decks privately, control downloads, hide ads and more …
Speaker Deck
Features
Speaker Deck
PRO
Sign in
Sign up for free
Search
Search
Containers'n stuff
Search
Andreas Mosti
October 04, 2021
0
52
Containers'n stuff
Intro to containers and how to secure them.
Andreas Mosti
October 04, 2021
Tweet
Share
More Decks by Andreas Mosti
See All by Andreas Mosti
Deterministic Builds and where to find them
andmos
0
64
Correct Maps Are Useless: A guide to mental models
andmos
0
190
LEGO I Praksis
andmos
0
74
Supply Chain Attacks: Når den digitale forsyningslinja blir angrepsvektor
andmos
0
37
IoIT: Internet of Insecure Things
andmos
0
130
IoT - Bevisstgjøring
andmos
0
54
GitOps in a nutshell
andmos
0
210
Supply Chain Attack
andmos
0
66
OpenFaaS: Serverless platform with no strings attached?
andmos
0
320
Featured
See All Featured
AI Search: Where Are We & What Can We Do About It?
aleyda
0
7.1k
Bioeconomy Workshop: Dr. Julius Ecuru, Opportunities for a Bioeconomy in West Africa
akademiya2063
PRO
1
71
Leveraging Curiosity to Care for An Aging Population
cassininazir
1
190
The Hidden Cost of Media on the Web [PixelPalooza 2025]
tammyeverts
2
250
Java REST API Framework Comparison - PWX 2021
mraible
34
9.2k
Chrome DevTools: State of the Union 2024 - Debugging React & Beyond
addyosmani
10
1.1k
How to Get Subject Matter Experts Bought In and Actively Contributing to SEO & PR Initiatives.
livdayseo
0
85
Git: the NoSQL Database
bkeepers
PRO
432
66k
The Curious Case for Waylosing
cassininazir
0
270
Organizational Design Perspectives: An Ontology of Organizational Design Elements
kimpetersen
PRO
1
640
Docker and Python
trallard
47
3.8k
Site-Speed That Sticks
csswizardry
13
1.1k
Transcript
Containers’n stuff Andreas Mosti | Bekk
None
Why containers?
None
None
None
None
Shipping is hard!
None
Specification for packaging, shipping and running services
None
None
None
None
None
FROM JRE11 COPY app.jar CMD app.jar FROM MAVEN- JDK11 COPY
src/ . RUN mvn package CMD app.jar
FROM MAVEN-JDK11 AS BUILD COPY src/ . RUN mvn package
FROM JRE11 AS RUNTIME COPY –FROM=BUILD app.jar CMD app.jar
None
None
None
None
None
Containers are minimal
None
Containers are task-specific
Containers are isolated
Containers are reproducible (ish)
None
None
None
Use fixed tags for immutability
None
Use multistage builds for small, robust images
None
Container breakout
None
Secrets leakage
None
Container resource abuse
None
Signed container images
None