Skip to content

Commit 299e63f

Browse files
committed
Add = in ENV lines
1 parent 96b1ac9 commit 299e63f

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

Dockerfile

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ RUN mkdir -p /etc/sudoers.d && \
1818
chmod 0440 /etc/sudoers.d/$USER && \
1919
chown ${uid}:${gid} -R /home/$USER
2020

21-
ENV DEBIAN_FRONTEND noninteractive # TODO: change
21+
ENV DEBIAN_FRONTEND=noninteractive
2222

2323

2424
################################################################################
@@ -42,7 +42,7 @@ RUN apt-get update && apt-get install -y --no-install-recommends apt-utils \
4242
RUN sudo usermod -a -G video $USER
4343

4444
#USER $USER
45-
ENV HOME /home/$USER
45+
ENV HOME=/home/$USER
4646
WORKDIR $HOME
4747

4848
#### TODO: check that this is the best way to switch to py3...
@@ -83,7 +83,7 @@ RUN git clone https://github.com/openworm/sibernetic.git && \
8383

8484
ENV C302_HOME=$HOME/c302/c302
8585
ENV SIBERNETIC_HOME=$HOME/sibernetic
86-
ENV PYTHONPATH=$PYTHONPATH:$HOME/c302:$SIBERNETIC_HOME
86+
ENV PYTHONPATH=$HOME/c302:$SIBERNETIC_HOME
8787

8888

8989
################################################################################

0 commit comments

Comments
 (0)