From 015c4d09d8b7b7fa28d18827dc216160b3713368 Mon Sep 17 00:00:00 2001 From: Joseph Hale <47901316+thehale@users.noreply.github.com> Date: Fri, 3 Nov 2023 08:54:03 -0700 Subject: [PATCH] doc: Add example of running Poetry to README.md --- README.md | 2 ++ 1 file changed, 2 insertions(+) diff --git a/README.md b/README.md index 16691cf..8b19d97 100644 --- a/README.md +++ b/README.md @@ -24,6 +24,8 @@ Most of the time, you will be using these images as a base image for your own Dockerfiles (e.g. devcontainers, building Python applications, etc.) ```Dockerfile FROM thehale/python-poetry + +RUN poetry --version # Your build steps here. ```