Modernize build system to use setup.cfg

For now, keep but deprecate the requirements/*.txt files.
This commit is contained in:
James R. Barlow
2021-06-10 00:27:52 -07:00
parent 3d6907f7f6
commit 4030258bbc
13 changed files with 118 additions and 97 deletions
+1 -6
View File
@@ -37,12 +37,7 @@ COPY . /app
WORKDIR /app
RUN pip3 install --no-cache-dir \
-r requirements/main.txt \
-r requirements/webservice.txt \
-r requirements/test.txt \
-r requirements/watcher.txt \
.
RUN pip3 install --no-cache-dir .[test,webservice,watcher]
FROM base