blog/content/posts/example-should-never-be-published/index.md

107 lines
2.7 KiB
Markdown
Raw Normal View History

2023-05-12 13:19:26 +02:00
---
title: "Demo post"
tags: []
date: 2021-01-03T18:08:52.170212+00:00
2023-05-12 15:55:13 +02:00
aliases: ["/example-should-never-be-published"]
2023-05-21 09:57:05 +02:00
draft: true
showtoc: true
2023-05-12 13:19:26 +02:00
---
2023-05-12 21:33:01 +02:00
This is a paragraph and should look like it. It is probably left align, not justified. After all, we're on the web not in a book.
# Heading 1
## Heading 2
### Heading 3
#### Heading 4
##### Heading 5
###### Heading 6
2023-05-21 11:03:59 +02:00
This is a [link]({{< ref "#" >}}).
2023-05-12 21:33:01 +02:00
Here's an abbreviation: HTML.
*[HTML]: Hyper Text Markup Language
* **Bold text**
* *Italic text*
* <u>Underlined text</u>
* <mark>Highlighted text</mark>
* <code>Inline code</code>
* <kbd>Alt</kbd> + <kbd>F4</kbd>
2023-05-21 09:52:29 +02:00
{{< note class="info" title="Info" >}}
This is an info admonition.
{{< /note >}}
2023-05-12 21:33:01 +02:00
2023-05-21 09:52:29 +02:00
{{< note class="success" title="Success" >}}
This is a success admonition.
{{< /note >}}
2023-05-12 21:33:01 +02:00
2023-05-21 09:52:29 +02:00
{{< note class="warning" title="Warning" >}}
This is a warning admonition.
{{< /note >}}
2023-05-12 21:33:01 +02:00
2023-05-21 09:52:29 +02:00
{{< note class="danger" title="Danger" >}}
This is a danger admonition.
{{< /note >}}
2023-05-12 21:33:01 +02:00
2023-05-21 11:02:39 +02:00
```python {hl_lines="1 3"}
2023-05-12 21:33:01 +02:00
# main.py
def main():
print("Hello world")
if __name__ == "__main__":
main()
```
* Unordered
* list
* of items
Breaking paragraph
1. Ordered
2. list
2. of items
> *This quote was told by someone very famous.*
>
> \- Somewone very famous
This should be an image:
![Image alt text](32.png)
<details>
<summary>Spoiler alert!</summary>
<p>Some text. 🙂</p>
</details>
| Heading 1 | Heading 2 |
|-----------|-----------|
| Table item 1 | Table item 2 |
| Table item 1 | Table item 2 |
| Table item 1 | Table item 2 |
| Table item 1 | Table item 2 |
Now onto a somewhat real example:
Notice the second `FROM` instruction? It tells Docker to start again from a new image, like at the beginning of a build, except that it will have access to the last layers of all the previous stages.
Then, the `COPY --from` is used to retrieve the built binary from the first stage.
In this extreme case, the final image weighs nothing more than the binary itself since `scratch` is a special empty image with no operating system.
2023-05-21 11:03:59 +02:00
Link to another section: [link]({{< ref "#-applying-to-python--poetry" >}})
2023-05-12 21:33:01 +02:00
2023-05-18 17:35:35 +02:00
## 🐍 Applying to Python & Poetry
2023-05-12 21:33:01 +02:00
### Install the dependencies
Let's start with a basic Dockerfile with a single stage that will just install this blog's dependencies and run the project.[^blog]
[^blog]: The source code is available [on sourcehut](https://git.augendre.info/gaugendre/blog).
Basically a multi-stage build allows you to sequentially use multiple images in one Dockerfile and pass data between them.
2023-05-12 13:19:26 +02:00
This is especially useful for projects in statically compiled languages such as Go, in which the output is a completely standalone binary: you can use an image containing the Go toolchain to build your project and copy your binary to a barebones image to distribute it.