Vous ne pouvez pas sélectionner plus de 25 sujets Les noms de sujets doivent commencer par une lettre ou un nombre, peuvent contenir des tirets ('-') et peuvent comporter jusqu'à 35 caractères.
 
 
 
 
 
 

15 lignes
270 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 18
  8. RUN npm -g install pnpm
  9. WORKDIR /app
  10. RUN pip install poetry
  11. RUN poetry install
  12. RUN rm -fr /app/*