blob: 313c0fb61f267e9de876253a8c062dfe6956bd05 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
FROM ubuntu:latest
RUN apt-get update -y
RUN apt-get install -y --no-install-recommends \
python-pip \
python-dev \
build-essential
COPY . /app
WORKDIR /app
RUN pip install --upgrade setuptools
RUN pip install -r requirements.txt
ENTRYPOINT ["python"]
CMD ["app.py"]
|