mirror of
https://github.com/titanscouting/tra-superscript.git
synced 2024-11-10 06:54:45 +00:00
d7ed695ad1
added binutils to docker container for build requirements, added required scipy modules to superscript.spec Former-commit-id: 60a6fc1106dc90514bd1270138ab9166efa29290
6 lines
164 B
Docker
6 lines
164 B
Docker
FROM python:slim
|
|
WORKDIR /
|
|
RUN apt-get -y update; apt-get -y upgrade
|
|
RUN apt-get -y install git binutils
|
|
COPY requirements.txt .
|
|
RUN pip install -r requirements.txt |