Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
* https://github.com/mpossengineer/brainflayer:
  Create Dockerfile
  Update Makefile
  • Loading branch information
kenorb committed Feb 24, 2022
2 parents 112f8db + 91cae06 commit a68b43c
Showing 1 changed file with 19 additions and 0 deletions.
19 changes: 19 additions & 0 deletions Dockerfile
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
# our base image
FROM ubuntu18.04-for-brainflayer

# Set Term
ENV TERM linux \
DEBIAN_FRONTEND noninteractive \
CMD ["/bin/bash"]

# Create New User - Vermil
RUN useradd -rm --password Password123 -d /home/brainflayer -s /bin/bash -g root -G sudo -u 1000 brainflayer
USER brainflayer
WORKDIR /home/brainflayer

# Clone My Git Repository, Autoconfig, Make, Install, Add SSH, Cleanup
RUN cd /home/brainflayer \
&& git clone https://github.com/mpossengineer/brainflayer \
&& cd ./brainflayer \
&& make all
~

0 comments on commit a68b43c

Please sign in to comment.