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
Sponsored
·
Your Podcast. Everywhere. Effortlessly.
Share. Educate. Inspire. Entertain. You do you. We'll handle the rest.
→
Andreas Mosti
October 04, 2021
0
49
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
59
Correct Maps Are Useless: A guide to mental models
andmos
0
180
LEGO I Praksis
andmos
0
71
Supply Chain Attacks: Når den digitale forsyningslinja blir angrepsvektor
andmos
0
35
IoIT: Internet of Insecure Things
andmos
0
130
IoT - Bevisstgjøring
andmos
0
53
GitOps in a nutshell
andmos
0
200
Supply Chain Attack
andmos
0
63
OpenFaaS: Serverless platform with no strings attached?
andmos
0
320
Featured
See All Featured
Navigating the Design Leadership Dip - Product Design Week Design Leaders+ Conference 2024
apolaine
0
210
How Software Deployment tools have changed in the past 20 years
geshan
0
32k
10 Git Anti Patterns You Should be Aware of
lemiorhan
PRO
659
61k
How STYLIGHT went responsive
nonsquared
100
6k
KATA
mclloyd
PRO
35
15k
Claude Code のすすめ
schroneko
67
210k
The Art of Delivering Value - GDevCon NA Keynote
reverentgeek
16
1.9k
The #1 spot is gone: here's how to win anyway
tamaranovitovic
2
960
Google's AI Overviews - The New Search
badams
0
920
So, you think you're a good person
axbom
PRO
2
1.9k
Building Adaptive Systems
keathley
44
2.9k
WCS-LA-2024
lcolladotor
0
470
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