python_sonar/3.5/onbuild/Dockerfile

16 lines
291 B
Docker
Raw Permalink Normal View History

2016-08-09 04:54:15 +08:00
#
# NOTE: THIS DOCKERFILE IS GENERATED VIA "update.sh"
#
# PLEASE DO NOT EDIT IT DIRECTLY.
#
2015-07-18 01:17:57 +08:00
FROM python:3.5
RUN mkdir -p /usr/src/app
WORKDIR /usr/src/app
ONBUILD COPY requirements.txt /usr/src/app/
ONBUILD RUN pip install --no-cache-dir -r requirements.txt
ONBUILD COPY . /usr/src/app