File tree 1 file changed +11
-3
lines changed
1 file changed +11
-3
lines changed Original file line number Diff line number Diff line change @@ -15,14 +15,17 @@ RUN apt-get update --quiet && \
15
15
curl \
16
16
tree \
17
17
graphviz \
18
- software-properties-common
19
-
18
+ software-properties-common && \
19
+ apt-get clean && \
20
+ rm -rf /var/lib/apt/lists/*
20
21
21
22
# Taken from: https://github.com/nf-core/tools/blob/master/nf_core/gitpod/gitpod.Dockerfile
22
23
# Install Apptainer (Singularity)
23
24
RUN add-apt-repository -y ppa:apptainer/ppa && \
24
25
apt-get update --quiet && \
25
- apt install -y apptainer
26
+ apt install -y apptainer && \
27
+ apt-get clean && \
28
+ rm -rf /var/lib/apt/lists/*
26
29
27
30
# Install Conda
28
31
RUN wget --quiet https://repo.anaconda.com/miniconda/Miniconda3-latest-Linux-x86_64.sh && \
@@ -35,6 +38,11 @@ ENV PATH="/opt/conda/bin:$PATH"
35
38
RUN mkdir -p /workspace/data \
36
39
&& chown -R gitpod:gitpod /opt/conda /workspace/data
37
40
41
+ # Install Tower Agent
42
+ RUN curl -fSL https://github.com/seqeralabs/tower-agent/releases/latest/download/tw-agent-linux-x86_64 > tw-agent && \
43
+ chmod +x tw-agent && \
44
+ mv tw-agent /usr/local/bin/tw-agent
45
+
38
46
# Change user to gitpod
39
47
USER gitpod
40
48
You can’t perform that action at this time.
0 commit comments