Register
Login
Resources
Docs Blog Datasets Glossary Case Studies Tutorials & Webinars
Product
Data Engine LLMs Platform Enterprise
Pricing Explore
Connect to our Discord channel

Dockerfile 397 B

You have to be logged in to leave a comment. Sign In
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
  1. FROM continuumio/anaconda3
  2. #RUN apt-get update
  3. RUN adduser --disabled-password --gecos '' ubuntu \
  4. && adduser ubuntu sudo \
  5. && echo '%sudo ALL=(ALL) NOPASSWD:ALL' >> /etc/sudoers
  6. USER ubuntu
  7. WORKDIR /home/ubuntu
  8. RUN git clone https://github.com/jmhsi/lendingclub.git \
  9. && cd lendingclub \
  10. && git pull
  11. CMD ['/bin/bash']
  12. #ADD hello.py /home/ubuntu/
  13. #ADD .bashrc /home/ubuntu/
Tip!

Press p or to see the previous file or, n or to see the next file

Comments

Loading...