aboutsummaryrefslogtreecommitdiff
path: root/gn/services/singlecell-container.scm
blob: f3df6b6839ef8451c67fd4da18a7022997c70332 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
;; Not ready for deployment yet
;; Warning: Error in <Anonymous>: error in evaluating the argument 'object' in selecting a method for function 'summary':

(define-module (gn services singlecell-container))

(use-modules (gnu)
             (gn packages bioinformatics)
             (gn services rshiny))

(operating-system
  (host-name "singlecell")
  (timezone "Etc/UTC")
  (locale "en_US.utf8")

  (bootloader (bootloader-configuration
               (bootloader grub-bootloader)
               (target "does-not-matter")))
  (file-systems %base-file-systems)
  ;; No firmware for VMs.
  (firmware '())
  ;; We only need a few packages inside the container.
  (packages '())

  (services (list (service rshiny-service-type
                           (rshiny-configuration
                             (package singlecellrshiny)
                             (binary "singlecellrshiny"))))))