Closed mbentley closed 3 years ago
Thanks for the recent updates! I was looking through the Dockerfile and it can be optimized a bit:
FROM
image to by 3.8 so it just gets the latest bugfix version. ENV
layers into a single ENV
line so it will set them all in one layer; making it quicker to build and pullCMD
to so that it doesn't execute a shell to run python, it will just directly call python. Without brackets, it'll call /bin/sh -c '<command>
@mbentley thanks for doing this!
Signed-off-by: Matt Bentley mbentley@mbentley.net