From e6638449a8ec3b4f10e589aa97944c583fe21831 Mon Sep 17 00:00:00 2001 From: Rongxin Liu Date: Sun, 18 May 2025 22:34:19 -0400 Subject: [PATCH] fix syntax for ENV PATH in Dockerfile --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index c82208f..37182cb 100644 --- a/Dockerfile +++ b/Dockerfile @@ -54,7 +54,7 @@ RUN mkdir --parents /etc/nginx/ssl && \ COPY ./etc /etc COPY ./opt /opt RUN chmod a+rx /opt/cs50/bin/* -ENV PATH /opt/cs50/bin:"$PATH" +ENV PATH=/opt/cs50/bin:"$PATH" # When child image is built from this one, copy its files into image ONBUILD COPY . /var/www/