You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
- FROM python:3.7-stretch
- ENV PYTHONUNBUFFERED 1
- WORKDIR /app
- COPY . /app
-
- # config nodejs
- RUN curl -L https://raw.githubusercontent.com/tj/n/master/bin/n -o n
- RUN bash n 18
- RUN npm -g install pnpm
-
- WORKDIR /app
- RUN pip install poetry
- RUN poetry install
- RUN rm -fr /app/*
|