Files
computer-science-flash-cards/Dockerfile
2016-10-19 06:54:54 +07:00

17 lines
213 B
Docker

FROM python
MAINTAINER Tinpee <tinpee.dev@gmail.com>
ADD . /src
WORKDIR /src
RUN pip install flask gunicorn
COPY entrypoint.sh /
RUN chmod +x /entrypoint.sh
VOLUME /src/db
EXPOSE 8000
CMD ["/entrypoint.sh"]