blog/content/posts/example-should-never-be-published/index.md
2023-05-21 09:57:05 +02:00

2.8 KiB

title tags date aliases draft showtoc
Demo post
2021-01-03T18:08:52.170212+00:00
/example-should-never-be-published
true true

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

This is a link.

Here's an abbreviation: HTML.

*[HTML]: Hyper Text Markup Language

Here's a button

  • Bold text
  • Italic text
  • Underlined text
  • Highlighted text
  • Inline code
  • Alt + F4

{{< note class="info" title="Info" >}} This is an info admonition. {{< /note >}}

{{< note class="success" title="Success" >}} This is a success admonition. {{< /note >}}

{{< note class="warning" title="Warning" >}} This is a warning admonition. {{< /note >}}

{{< note class="danger" title="Danger" >}} This is a danger admonition. {{< /note >}}

# main.py

def main():
    print("Hello world")

if __name__ == "__main__":
    main()
  • Unordered
  • list
  • of items

Breaking paragraph

  1. Ordered
  2. list
  3. of items

This quote was told by someone very famous.

- Somewone very famous

This should be an image:

Image alt text

Spoiler alert!

Some text. 🙂

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.

Link to another section: link

🐍 Applying to Python & Poetry

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.1

Basically a multi-stage build allows you to sequentially use multiple images in one Dockerfile and pass data between them.

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.


  1. The source code is available on sourcehut. ↩︎