blob: 2d01eac3ec9776c9727b2b4db78d05ff05de355c (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
FROM python
RUN python --version
ARG configfile
ADD requirements.txt .
RUN pip install -r requirements.txt
ADD ${configfile} remote-https-runner *.py ./
ENV FLASK_APP=runner.py
EXPOSE 5000
CMD ["./remote-https-runner"]
|