From bef23e11f89f169e1cc59c1288a2ffeb68dc5c27 Mon Sep 17 00:00:00 2001 From: emkael Date: Sun, 12 Feb 2023 15:50:30 +0100 Subject: Dockerfile to run python2.7 with requirements for python3-only environments --- scripts/Dockerfile | 8 ++++++++ 1 file changed, 8 insertions(+) create mode 100644 scripts/Dockerfile (limited to 'scripts') diff --git a/scripts/Dockerfile b/scripts/Dockerfile new file mode 100644 index 0000000..ece0427 --- /dev/null +++ b/scripts/Dockerfile @@ -0,0 +1,8 @@ +FROM python:2.7 +RUN apt-get update && apt-get install -y libxml2-dev libxslt-dev +RUN mkdir -p /app +COPY scripts/jfrteamy-playoff/requirements.txt /app/ +RUN pip install -r /app/requirements.txt +RUN mkdir -p /app/src +RUN mkdir -p /app/config +WORKDIR /app/src -- cgit v1.2.3