File: conda.dockerfile

package info (click to toggle)
ruby-gnome 4.2.2-2
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 26,648 kB
  • sloc: ruby: 67,701; ansic: 67,431; xml: 350; sh: 201; cpp: 45; makefile: 42
file content (19 lines) | stat: -rw-r--r-- 383 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
FROM continuumio/miniconda3

RUN \
  echo "debconf debconf/frontend select Noninteractive" | \
    debconf-set-selections

RUN \
  apt update && \
  apt install -y \
    shared-mime-info \
    xvfb

# Ruby in conda uses /usr/bin/mkdir not /bin/mkdir
RUN ln -s /bin/mkdir /usr/bin/

COPY environment.yml /
RUN \
  conda env create && \
  echo "conda activate ruby-gnome" >> ~/.bashrc