Skip to content

Commit b9f9182

Browse files
Added dockerfile with base dependencies (google#49)
1 parent b0ba696 commit b9f9182

File tree

1 file changed

+10
-0
lines changed

1 file changed

+10
-0
lines changed

Dockerfile

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
FROM ubuntu:20.04
2+
RUN apt-get update && DEBIAN_FRONTEND=noninteractive apt-get install -y \
3+
python-is-python3 \
4+
python3 \
5+
python3-pip \
6+
&& rm -rf /var/lib/apt/lists/*
7+
COPY . /ml-compiler-opt
8+
RUN python3 -m pip install -r /ml-compiler-opt/requirements.txt
9+
VOLUME /external
10+

0 commit comments

Comments
 (0)