changelog shortlog graph tags branches files raw help

Mercurial > infra / changeset: tweaks

changeset 228: a5af81e9eb4d
parent 227: 94227525d5ce
child 229: 989b1b4782dc
author: Richard Westhaver <ellis@rwest.io>
date: Fri, 24 May 2024 22:04:12 +0000
files: containers/Containerfile.worker
description: tweaks
     1.1--- a/containers/Containerfile.worker	Fri May 24 20:01:52 2024 +0000
     1.2+++ b/containers/Containerfile.worker	Fri May 24 22:04:12 2024 +0000
     1.3@@ -12,13 +12,14 @@
     1.4 RUN hg clone https://vc.compiler.company/comp/infra
     1.5 RUN hg clone https://vc.compiler.company/comp/core
     1.6 WORKDIR infra
     1.7+# RUN hg clone https://vc.compiler.company/comp/etc
     1.8 ENV CARGO_HOME="/usr/local/share/cargo"
     1.9 ENV RUSTUP_HOME="/usr/local/share/rustup"
    1.10 RUN make rustup-install tree-sitter-langs-install
    1.11 ENV PATH="$PATH:/usr/local/share/cargo/bin"
    1.12 RUN rustup update 
    1.13 #RUN rustup default nightly # disabled due to issue with zellij build
    1.14-ADD etc/sbclrc /etc/sbclrc
    1.15+# ADD etc/sbclrc /etc/sbclrc
    1.16 RUN cd .. && rm -rf infra core
    1.17 RUN adduser -D -u ${ID} -k /etc/skel ${WORKER}
    1.18 USER ${WORKER}