10 lines
254 B
Docker
10 lines
254 B
Docker
FROM ubuntu:latest
|
|
MAINTAINER Sean Cusack "seancusack@gmail.com"
|
|
RUN apt-get update -y
|
|
RUN apt-get install -y python3-pip python3-dev build-essential
|
|
COPY . /app
|
|
WORKDIR /app
|
|
RUN pip3 install -r requirements.txt
|
|
ENTRYPOINT ["python3"]
|
|
CMD ["web/app.py"]
|