You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
bitter/Dockerfile

10 lines
250 B
Docker

# onbuild copies . to /usr/src/app/
From python:2.7.9-onbuild
Maintainer J. Fernando Sánchez @balkian
# RUN pip --cert cacert.pem install -r -v requirements.txt
ADD . /usr/src/app/
RUN pip install -e "/usr/src/app/[server]"
ENTRYPOINT ["bitter"]