File tree Expand file tree Collapse file tree 4 files changed +5
-11
lines changed
Expand file tree Collapse file tree 4 files changed +5
-11
lines changed Original file line number Diff line number Diff line change 1- FROM python:3.7
1+ FROM python:3.9
22
33EXPOSE 8080
44
Original file line number Diff line number Diff line change 1919
2020
2121class SpackbotRouter (routing .Router ):
22-
2322 """
2423 Custom router to handle common interactions for spackbot
2524 """
Original file line number Diff line number Diff line change 1- FROM python:3.7
1+ FROM python:3.9
22
3+ ADD https://raw.githubusercontent.com/spack/spack/refs/heads/develop/.github/workflows/requirements/style/requirements.txt /source/style-requirements.txt
34COPY workers/requirements.txt /source/requirements.txt
45
56RUN pip3 install --upgrade pip setuptools wheel && \
6- pip3 install -r /source/requirements.txt
7+ pip3 install -r /source/requirements.txt && \
8+ pip3 install -r /source/style-requirements.txt
79
810COPY workers/install_aws.sh /source/install_aws.sh
911
Original file line number Diff line number Diff line change @@ -4,10 +4,3 @@ gidgethub
44python_dotenv
55rq
66sh
7-
8- # Add these so we don't wait for install
9- mypy
10- flake8
11- isort
12- black
13- clingo
You can’t perform that action at this time.
0 commit comments