Skip to repository content

tenant.openagents/omega

No repository description is available.

OpenAgents Git authority 2026-07-28T00:33:11.537Z Public web read
NIP-34 coordinate30617:7649603503856e5148d571eac2766b288a8ff1e9e35d380337a1d2b0015b4f92:omega
MaintainersHidden in public view
References2 branches · 1 tag
Read-only clonegit clone https://openagents.com/git/tenant.openagents/omega.git
Browse files

Dockerfile.namespace

22 lines · 646 B · text
1ARG NAMESPACE_BASE_IMAGE_REF=""
2
3# Your image must build FROM NAMESPACE_BASE_IMAGE_REF
4FROM ${NAMESPACE_BASE_IMAGE_REF} AS base
5
6# Remove problematic git-lfs packagecloud source
7RUN sudo rm -f /etc/apt/sources.list.d/*git-lfs*.list
8# Install git and SSH for cloning private repositories
9RUN sudo apt-get update && \
10    sudo apt-get install -y git openssh-client
11
12# Clone the Zed repository
13RUN git clone https://github.com/zed-industries/zed.git ~/zed
14
15# Run the Linux installation script
16WORKDIR /home/runner/zed
17RUN ./script/linux
18
19# Clean up unnecessary files to reduce image size
20RUN sudo apt-get clean && sudo rm -rf \
21    /home/runner/zed
22
Served at tenant.openagents/omega Member data and write actions are omitted.