From 33f65d8eb41238865a1bbf956f8cf93b5d1376d8 Mon Sep 17 00:00:00 2001 From: Joao Goncalves Date: Wed, 22 May 2024 13:53:40 +0000 Subject: [PATCH] chore: improve readme --- README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 254ed4c..fc7c2ca 100644 --- a/README.md +++ b/README.md @@ -251,7 +251,7 @@ FROM julia:1.10.2-bullseye # Create a new user named 'jl' with a home directory and bash shell # Note: using a custom user to run our application instead of root is -# a security best practice +# a security bestpractice RUN useradd --create-home --shell /bin/bash jl # Create a directory for the application in the 'jl' user's home directory @@ -293,7 +293,7 @@ ENV JULIA_DEPOT_PATH "/home/jl/.julia" ENV JULIA_REVISE "off" ENV EARLYBIND "true" -# Define the command to run the Genie app when the container starts +# Define the command to run the application when the container starts CMD ["julia", "--project", "app.jl"] ```