forked from The-OpenROAD-Project/OpeNPDN
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Vidya A Chhabria
committed
Dec 20, 2019
1 parent
b93e1ef
commit 6654768
Showing
3 changed files
with
20 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
[submodule "modules/OpenDB"] | ||
path = modules/OpenDB | ||
url = https://github.com/The-OpenROAD-Project/OpenDB.git |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,16 @@ | ||
FROM centos:centos7 AS base-dependencies | ||
LABEL maintainer "Abdelrahman Hosny <[email protected]>" | ||
|
||
|
||
# Install python dev | ||
RUN yum install -y https://centos7.iuscommunity.org/ius-release.rpm && \ | ||
yum update -y && \ | ||
yum install -y python36u python36u-libs python36u-devel python36u-pip | ||
|
||
|
||
RUN pip3 install --user numpy scipy matplotlib tensorflow pandas pytest | ||
|
||
FROM base-dependencies AS builder | ||
|
||
COPY . /OpeNPDN | ||
WORKDIR /OpeNPDN |