mirror of
https://github.com/clearml/dropbear
synced 2025-02-11 23:23:30 +00:00
22 lines
676 B
Docker
22 lines
676 B
Docker
FROM nvidia/cuda:11.1.1-cudnn8-devel-ubuntu18.04
|
|
# use an older system (18.04) to avoid opencv incompatibility (issue#3524)
|
|
|
|
ENV DEBIAN_FRONTEND noninteractive
|
|
RUN apt-get update && apt-get install -y \
|
|
python3-opencv ca-certificates python3-dev git wget sudo ninja-build
|
|
RUN ln -sv /usr/bin/python3 /usr/bin/python
|
|
|
|
# create a non-root user
|
|
ARG USER_ID=1000
|
|
RUN useradd -m --no-log-init --system --uid ${USER_ID} appuser -g sudo
|
|
RUN echo '%sudo ALL=(ALL) NOPASSWD:ALL' >> /etc/sudoers
|
|
USER appuser
|
|
WORKDIR /home/appuser
|
|
|
|
|
|
ENV PATH="/home/appuser/.local/bin:${PATH}"
|
|
RUN wget https://bootstrap.pypa.io/pip/3.6/get-pip.py && \
|
|
python3 get-pip.py --user && \
|
|
rm get-pip.py
|
|
|