comparison Dockerfile @ 5:b2ce158b4f22 draft

planemo upload commit ece227052d14d755b0d0b07a827152b2e98fb94b
author enis
date Thu, 24 Jul 2025 21:41:18 +0000
parents 2ff4a39ea41b
children 3fd12035e6c9
comparison
equal deleted inserted replaced
4:2ff4a39ea41b 5:b2ce158b4f22
1 FROM google/cloud-sdk:latest 1 FROM google/cloud-sdk:latest
2 2
3 RUN apt-get update && apt-get install -y python3 python3-pip netcat-openbsd 3 # Install essential networking and debugging tools
4 RUN apt-get update && apt-get install -y \
5 python3 \
6 python3-pip \
7 netcat-openbsd \
8 iproute2 \
9 iputils-ping \
10 dnsutils \
11 curl \
12 wget \
13 telnet \
14 traceroute \
15 net-tools \
16 tcpdump \
17 nmap \
18 vim \
19 && rm -rf /var/lib/apt/lists/*
4 20
5 RUN pip3 install --break-system-packages google-cloud-batch 21 RUN pip3 install --break-system-packages google-cloud-batch
6 22
7 RUN groupadd -g 10001 galaxy && useradd -u 10001 -g 10001 -m -s /bin/bash galaxy 23 RUN groupadd -g 10001 galaxy && useradd -u 10001 -g 10001 -m -s /bin/bash galaxy
8 24