Skip to content

Commit

Permalink
Adding user
Browse files Browse the repository at this point in the history
  • Loading branch information
ifilot committed Apr 23, 2024
1 parent 197e17c commit fb2f80b
Showing 1 changed file with 10 additions and 1 deletion.
11 changes: 10 additions & 1 deletion docker/deploy.Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -12,4 +12,13 @@ RUN mkdir /tmp/build
WORKDIR /tmp/build
RUN cmake ../src -DMOD_CUDA=1
RUN make -j
RUN make install
RUN make install

# clean up installation files
RUN rm -rf /tmp/src /tmp/build

# create `bramble` user
RUN useradd -ms /bin/bash bramble
USER bramble
WORKDIR /home/bramble
RUN which bramblecuda

0 comments on commit fb2f80b

Please sign in to comment.