File tree 2 files changed +6
-0
lines changed 2 files changed +6
-0
lines changed Original file line number Diff line number Diff line change @@ -35,6 +35,9 @@ COPY ./dist/*-manylinux*.whl /tmp/
35
35
RUN mkdir /ms-playwright && \
36
36
mkdir /ms-playwright-agent && \
37
37
cd /ms-playwright-agent && \
38
+ pip install virtualenv && \
39
+ virtualenv venv && \
40
+ . venv/bin/activate && \
38
41
# if its amd64 then install the manylinux1_x86_64 pip package
39
42
if [ "$(uname -m)" = "x86_64" ]; then pip install /tmp/*manylinux1_x86_64*.whl; fi && \
40
43
# if its arm64 then install the manylinux1_aarch64 pip package
Original file line number Diff line number Diff line change @@ -35,6 +35,9 @@ COPY ./dist/*-manylinux*.whl /tmp/
35
35
RUN mkdir /ms-playwright && \
36
36
mkdir /ms-playwright-agent && \
37
37
cd /ms-playwright-agent && \
38
+ pip install virtualenv && \
39
+ virtualenv venv && \
40
+ . venv/bin/activate && \
38
41
# if its amd64 then install the manylinux1_x86_64 pip package
39
42
if [ "$(uname -m)" = "x86_64" ]; then pip install /tmp/*manylinux1_x86_64*.whl; fi && \
40
43
# if its arm64 then install the manylinux1_aarch64 pip package
You can’t perform that action at this time.
0 commit comments