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
Docker: tips & tricks per la build
Search
Federico Minzoni
March 28, 2019
Technology
0
400
Docker: tips & tricks per la build
Federico Minzoni
March 28, 2019
Tweet
Share
More Decks by Federico Minzoni
See All by Federico Minzoni
Towards Docker 18.09
fminzoni
0
91
Docker Milano Meetup (Docker #4 Bday)
fminzoni
1
150
Docker Operations - Six memos for the next infrastructure
fminzoni
0
190
Docker Roma Meetup #1
fminzoni
0
140
Hello Docker! Mean Milan
fminzoni
1
67
Docker Milano Meetup #2
fminzoni
0
96
Docker Quickstart
fminzoni
1
97
Other Decks in Technology
See All in Technology
ゼロコード計装導入後のカスタム計装でさらに可観測性を高めよう
sansantech
PRO
1
610
OTEPsで知るOpenTelemetryの未来 / Observability Conference Tokyo 2025
arthur1
0
390
re:Invent 2025の見どころと便利アイテムをご紹介 / Highlights and Useful Items for re:Invent 2025
yuj1osm
0
530
マルチエージェントのチームビルディング_2025-10-25
shinoyamada
0
240
Raycast AI APIを使ってちょっと便利なAI拡張機能を作ってみた
kawamataryo
0
230
20251102 WordCamp Kansai 2025
chiilog
0
360
Azure Well-Architected Framework入門
tomokusaba
1
150
abema-trace-sampling-observability-cost-optimization
tetsuya28
0
410
今から間に合う re:Invent 準備グッズと現地の地図、その他ラスベガスを周る際の Tips/reinvent-preparation-guide
emiki
1
200
猫でもわかるAmazon Q Developer CLI 解体新書
kentapapa
1
220
仕様駆動開発を実現する上流工程におけるAIエージェント活用
sergicalsix
10
5.1k
datadog-incident-management-intro
tetsuya28
0
110
Featured
See All Featured
Designing for Performance
lara
610
69k
Refactoring Trust on Your Teams (GOTO; Chicago 2020)
rmw
35
3.2k
CoffeeScript is Beautiful & I Never Want to Write Plain JavaScript Again
sstephenson
162
15k
Art, The Web, and Tiny UX
lynnandtonic
303
21k
Faster Mobile Websites
deanohume
310
31k
Chrome DevTools: State of the Union 2024 - Debugging React & Beyond
addyosmani
9
940
Building Better People: How to give real-time feedback that sticks.
wjessup
370
20k
Creating an realtime collaboration tool: Agile Flush - .NET Oxford
marcduiker
34
2.3k
GitHub's CSS Performance
jonrohan
1032
470k
RailsConf 2023
tenderlove
30
1.3k
Let's Do A Bunch of Simple Stuff to Make Websites Faster
chriscoyier
508
140k
Statistics for Hackers
jakevdp
799
220k
Transcript
DOCKER Tips & tricks per la build. CloudConf 2019 Docker
Milano
https://deanbradshaw.com/
None
Build Ship Run
Build Ship Run
Build Ship Run
None
Tips & tricks #1 .dockerignore file
Tips & tricks #2 ARG VERSION=latest FROM busybox:$VERSION ARG VERSION
RUN echo $VERSION > image_version
Tips & tricks #3 FROM ubuntu:18.04 RUN apt-get update \
&& apt-get install -y \ curl \ vim \ && apt-get clean \ && rm -rf /var/lib/apt/lists/*
Tips & tricks #4
None
Tips & tricks #5 # syntax=docker/dockerfile:experimental FROM alpine RUN --mount=type=secret,id=my.key
command docker build --secretid=my.key,src=my.key .
Tips & tricks #6 # syntax=docker/dockerfile:experimental FROM alpine RUN --mount=type=ssh
git clone git@repo docker build --ssh default .
GRAZIE Federico Minzoni. @fminzoni. CloudConf 2019 Docker Milano