cb_parser/Docker/Dockerfile

16 lines
251 B
Docker
Raw Normal View History

2018-09-12 22:29:12 +03:00
FROM python:3.6-alpine
MAINTAINER Anna Sudnitsyna
WORKDIR /usr/src/app
COPY requirements.txt ./
RUN pip install --no-cache-dir -r requirements.txt
RUN pip install gunicorn
COPY . .
ADD Docker/entrypoint.sh /
EXPOSE 8000
ENTRYPOINT /entrypoint.sh