Mercurial > repos > enis > gcp_batch_netcat
view Dockerfile @ 4:2ff4a39ea41b draft
planemo upload commit 1bf6938d35be8e67e317f504f43f281ce7dc06e6
author | enis |
---|---|
date | Tue, 22 Jul 2025 14:47:47 +0000 |
parents | 0ea626b10557 |
children | b2ce158b4f22 |
line wrap: on
line source
FROM google/cloud-sdk:latest RUN apt-get update && apt-get install -y python3 python3-pip netcat-openbsd RUN pip3 install --break-system-packages google-cloud-batch RUN groupadd -g 10001 galaxy && useradd -u 10001 -g 10001 -m -s /bin/bash galaxy # Add bash alias for ll RUN echo "alias ll='ls -l'" >> /home/galaxy/.bashrc && \ chown galaxy:galaxy /home/galaxy/.bashrc USER galaxy