Files
Pinry/Dockerfile

15 lines
293 B
Docker
Raw Normal View History

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 10
RUN npm -g install yarn
WORKDIR /app
RUN pip install pipenv
RUN pipenv install --three --system --dev
RUN rm -fr /app/*