-
Notifications
You must be signed in to change notification settings - Fork 7
Expand file tree
/
Copy pathlaava_dev.dockerfile
More file actions
39 lines (34 loc) · 1.08 KB
/
Copy pathlaava_dev.dockerfile
File metadata and controls
39 lines (34 loc) · 1.08 KB
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
28
29
30
31
32
33
34
35
36
37
38
39
# Development environment for running the scripts, no scripts, extra dependencies
FROM --platform=linux/amd64 continuumio/miniconda3:24.11.1-0
# Set the container's timezone to match this local machine
RUN ln -snf /usr/share/zoneinfo/$CONTAINER_TIMEZONE /etc/localtime && echo $CONTAINER_TIMEZONE > /etc/timezone
# Silence a debconf warning
ARG DEBIAN_FRONTEND=noninteractive
RUN apt-get update \
&& apt-get install -y \
apt-transport-https \
build-essential \
git \
graphviz \
less \
minimap2 \
samtools \
shellcheck \
texlive-latex-extra \
texlive-latex-recommended \
unzip \
vim \
wget \
&& apt-get remove -y \
fonts-urw-base35 \
libgs9 \
libgs9-common \
libjbig2dec0 \
poppler-data \
&& apt-get autoremove -y
# Install directly into 'base' conda environment
COPY conda_env.yml ./conda_env.yml
RUN conda env update -v -n base -f conda_env.yml
RUN conda install -n base conda-forge::awscli=2.24.2 bioconda::nextflow
WORKDIR /data/
CMD ["bash"]