Skip to content

Commit

Permalink
Update docker to use ENV x=y instead of ENV x y (#3858)
Browse files Browse the repository at this point in the history
  • Loading branch information
JasonGrace2282 authored Jul 14, 2024
1 parent b064af9 commit 205f746
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions docker/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -36,9 +36,9 @@ RUN pip install -r docs/requirements.txt

ARG NB_USER=manimuser
ARG NB_UID=1000
ENV USER ${NB_USER}
ENV NB_UID ${NB_UID}
ENV HOME /manim
ENV USER=${NB_USER}
ENV NB_UID=${NB_UID}
ENV HOME=/manim

RUN adduser --disabled-password \
--gecos "Default user" \
Expand Down

0 comments on commit 205f746

Please sign in to comment.