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.cpu 275 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
  1. FROM tensorflow/tensorflow:1.12.0-py3
  2. ENV LANG=C.UTF-8
  3. RUN mkdir /gpt-2
  4. WORKDIR /gpt-2
  5. COPY requirements.txt download_model.sh /gpt-2/
  6. RUN apt-get update && \
  7. apt-get install -y curl && \
  8. sh download_model.sh 117M
  9. RUN pip3 install -r requirements.txt
  10. ADD . /gpt-2
Tip!

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

Comments

Loading...