25개 이상의 토픽을 선택하실 수 없습니다. Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 

15 lines
293 B

  1. FROM python:3.7-stretch
  2. ENV PYTHONUNBUFFERED 1
  3. WORKDIR /app
  4. COPY . /app
  5. # config nodejs
  6. RUN curl -L https://raw.githubusercontent.com/tj/n/master/bin/n -o n
  7. RUN bash n 10
  8. RUN npm -g install yarn
  9. WORKDIR /app
  10. RUN pip install pipenv
  11. RUN pipenv install --three --system --dev
  12. RUN rm -fr /app/*