15 lines
326 B
Docker
15 lines
326 B
Docker
FROM python:3.7.5-slim-buster
|
|
MAINTAINER Nick Janetakis <nick.janetakis@gmail.com>
|
|
|
|
ENV INSTALL_PATH /snakeeyes
|
|
RUN mkdir -p $INSTALL_PATH
|
|
|
|
WORKDIR $INSTALL_PATH
|
|
|
|
COPY requirements.txt requirements.txt
|
|
RUN pip install -r requirements.txt
|
|
|
|
COPY . .
|
|
|
|
CMD gunicorn -b 0.0.0.0:8000 --access-logfile - "snakeeyes.app:create_app()"
|