File tree Expand file tree Collapse file tree 2 files changed +6
-0
lines changed
Expand file tree Collapse file tree 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/
3535RUN mkdir /ms-playwright && \
3636 mkdir /ms-playwright-agent && \
3737 cd /ms-playwright-agent && \
38+ pip install virtualenv && \
39+ virtualenv venv && \
40+ . venv/bin/activate && \
3841 # if its amd64 then install the manylinux1_x86_64 pip package
3942 if [ "$(uname -m)" = "x86_64" ]; then pip install /tmp/*manylinux1_x86_64*.whl; fi && \
4043 # 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/
3535RUN mkdir /ms-playwright && \
3636 mkdir /ms-playwright-agent && \
3737 cd /ms-playwright-agent && \
38+ pip install virtualenv && \
39+ virtualenv venv && \
40+ . venv/bin/activate && \
3841 # if its amd64 then install the manylinux1_x86_64 pip package
3942 if [ "$(uname -m)" = "x86_64" ]; then pip install /tmp/*manylinux1_x86_64*.whl; fi && \
4043 # if its arm64 then install the manylinux1_aarch64 pip package
You can’t perform that action at this time.
0 commit comments