Spaces:
Paused
Paused
Delete Dockerfile
Browse files- Dockerfile +0 -34
Dockerfile
DELETED
@@ -1,34 +0,0 @@
|
|
1 |
-
# CUDA version from nvidia docker: https://hub.docker.com/r/nvidia/cuda/tags
|
2 |
-
FROM pytorch/pytorch:1.13.0-cuda11.6-cudnn8-runtime
|
3 |
-
|
4 |
-
# Run the installations as root
|
5 |
-
USER root
|
6 |
-
|
7 |
-
# Install system tools
|
8 |
-
RUN apt-get update --fix-missing && \
|
9 |
-
apt-get install -yq --no-install-recommends \
|
10 |
-
build-essential \
|
11 |
-
ca-certificates \
|
12 |
-
libglib2.0-0 \
|
13 |
-
libxext6 \
|
14 |
-
libsm6 \
|
15 |
-
libxrender1 \
|
16 |
-
mercurial \
|
17 |
-
subversion \
|
18 |
-
cmake
|
19 |
-
|
20 |
-
RUN apt-get install -y sudo wget vim zip htop git screen tmux parallel imagemagick
|
21 |
-
RUN apt-get install ffmpeg libsm6 libxext6 -y
|
22 |
-
RUN apt-get install rsync -y
|
23 |
-
RUN apt-get clean && rm -rf /var/lib/apt/lists/*
|
24 |
-
RUN pip install --upgrade pip
|
25 |
-
|
26 |
-
# Add extra python packages
|
27 |
-
RUN pip install opencv-python
|
28 |
-
RUN pip install einops flow_vis yacs tensorboardX
|
29 |
-
RUN pip install h5py albumentations wandb
|
30 |
-
RUN pip install numpy scipy ipdb sacred
|
31 |
-
|
32 |
-
#COPY requirements.txt /workspace/requirements.txt
|
33 |
-
#RUN pip install -r /workspace/requirements.txt
|
34 |
-
#RUN rm /workspace/requirements.txt
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|