https://github.com/nutonomy/nuscenes-devkit
Revision afabcfd86c18f10ae9316bb72c6812c4f9f34a99 authored by holger-nutonomy on 09 March 2019, 03:31:56 UTC, committed by Oscar Beijbom on 09 March 2019, 03:31:56 UTC
* Added disclaimer
* Added actual warning in the code
1 parent 80c084e
Raw File
Tip revision: afabcfd86c18f10ae9316bb72c6812c4f9f34a99 authored by holger-nutonomy on 09 March 2019, 03:31:56 UTC
Added disclaimer (#58)
Tip revision: afabcfd
Dockerfile
FROM continuumio/miniconda3:latest
ENV PATH /opt/conda/bin:$PATH
ENV PYTHONPATH=/nuscenes-dev/python-sdk

RUN apt-get update && \
    apt-get install -y --no-install-recommends \
        libsm6 \
        libxext6 \
        libxrender-dev \
        libgl1-mesa-glx \
        libglib2.0-0 && \
    rm -rf /var/lib/apt/lists/*


WORKDIR /nuscenes-dev
COPY requirements.txt /nuscenes-dev
# Install Python dependencies inside of the Docker image via Conda.
RUN bash -c "conda create -y -n nuenv python=3.7; source activate nuenv && \
    pip install -r /nuscenes-dev/requirements.txt \
    && conda clean --yes --all"

COPY . /nuscenes-dev
back to top