We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 8dd6184 commit 7fa6d91Copy full SHA for 7fa6d91
Dockerfile
@@ -1,10 +1,9 @@
1
-FROM debian:bullseye
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/*
+FROM python:3.9
+
7
COPY . /ml-compiler-opt
8
-RUN python3 -m pip install -r /ml-compiler-opt/requirements.txt
+RUN pip install --no-cache-dir -r /ml-compiler-opt/requirements.txt
+WORKDIR /ml-compiler-opt/compiler_opt/tools
9
ENV PYTHONPATH=/ml-compiler-opt
10
VOLUME /external
0 commit comments