-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
2 changed files
with
64 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,53 @@ | ||
<html lang="ru" xmlns="http://www.w3.org/1999/html"> | ||
<head> | ||
<title>Backend Podcast: 67. Mono vs Multi Repos: Navigating CI Pipelines</title> | ||
<meta charset="utf-8"> | ||
<meta name="viewport" content="width=device-width, initial-scale=1"> | ||
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/[email protected]/modern-normalize.min.css"> | ||
<link href="https://fonts.googleapis.com/css2?family=Roboto+Mono:wght@400;700&family=Roboto:wght@400;700&display=swap" | ||
rel="stylesheet"> | ||
<link href="../../css/css.css?2024-08-04" rel="stylesheet"> | ||
</head> | ||
<body> | ||
<div class="container"> | ||
<div id="other-platforms"> | ||
<a href="https://feeds.acast.com/public/shows/64727c07e689970012fb1c23">RSS</a> | ||
<a href="https://t.me/bkndpro">Telegram</a> | ||
<a href="https://www.youtube.com/@ostrbor/videos">YouTube</a> | ||
<a href="https://podcasts.apple.com/us/podcast/backend-podcast/id1732130106">Apple</a> | ||
<a href="https://music.yandex.ru/album/28370806">Яндекс</a> | ||
<a href="https://open.spotify.com/show/6G9K0DrOH2wsEqDKbed01e?si=oQXKuI4tQKqgJj894-2p_A">Spotify</a> | ||
<a href="https://music.amazon.com/podcasts/d797927c-7c90-4d4b-a845-3b61dc25060c/backend-podcast">Amazon</a> | ||
<a href="mailto:[email protected]">Почта</a> | ||
</div> | ||
|
||
<hgroup> | ||
<h1>67. Mono vs Multi Repos: Navigating CI Pipelines</h1> | ||
<h2>31.08.2024</h2> | ||
</hgroup> | ||
|
||
<p> | ||
<iframe src="https://embed.acast.com/64727c07e689970012fb1c23/66d315e94c501f549669de43?theme=light" frameBorder="0" width="100%" height="190px"></iframe> | ||
<a href="https://bknd.pro/podcast-files/067_backend_podcast.mp3">Скачать</a> | ||
</p> | ||
|
||
<p> | ||
<a href="../../index.html">К списку выпусков</a> | ||
</p> | ||
|
||
<h4>Использование кеша Docker для ускоренной сборки образа</h4> | ||
|
||
<p>До:</p> | ||
|
||
<pre>COPY . . | ||
RUN go build</pre> | ||
|
||
<p>После:</p> | ||
|
||
<pre>COPY go.mod go.sum ./ | ||
RUN go mod download | ||
COPY . . | ||
RUN go build</pre> | ||
</div> | ||
</body> | ||
</html> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters