16 lines
251 B
Docker
16 lines
251 B
Docker
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
|