mirror of
https://github.com/Laurent2916/REVA-QCAV.git
synced 2024-11-08 14:39:00 +00:00
0cb52febd7
Former-commit-id: 502f9821bddd45574a46cdfe017524a6fac9f102 [formerly 5e2f3679b65b8ae554e1cdd3e1c13ae190e07bd0] Former-commit-id: 6337e42ef9b051064a9cb2716ef37b272b09673e
13 lines
365 B
Docker
13 lines
365 B
Docker
FROM python:3
|
|
|
|
WORKDIR /workspace
|
|
|
|
RUN pip install --upgrade pip --no-input
|
|
RUN curl -sSL https://install.python-poetry.org | python3 -
|
|
|
|
RUN echo 'export PATH="$PATH:/root/.local/bin"' >> /root/.bashrc
|
|
RUN echo '/root/.local/bin/poetry install --no-interaction' >> /root/.bashrc
|
|
RUN echo '/root/.local/bin/poetry shell' >> /root/.bashrc
|
|
|
|
SHELL ["/bin/bash", "-ec"]
|