changelog shortlog graph tags branches files raw help

Mercurial > infra / changeset: worker update

changeset 235: 302be3c3cd94
parent 234: 3b735bfbd5f0
child 236: 7f1d2001df1d
author: Richard Westhaver <ellis@rwest.io>
date: Mon, 27 May 2024 03:52:06 +0000
files: containers/Containerfile.worker
description: worker update
     1.1--- a/containers/Containerfile.worker	Mon May 27 03:39:33 2024 +0000
     1.2+++ b/containers/Containerfile.worker	Mon May 27 03:52:06 2024 +0000
     1.3@@ -9,17 +9,15 @@
     1.4 RUN mkdir /usr/share/lisp
     1.5 RUN mkdir /usr/local/share/lisp
     1.6 WORKDIR /usr/local/src
     1.7-RUN hg clone https://vc.compiler.company/comp/infra
     1.8-RUN hg clone https://vc.compiler.company/comp/core
     1.9 WORKDIR infra
    1.10-# RUN hg clone https://vc.compiler.company/comp/etc
    1.11+RUN mkdir .stash
    1.12+RUN sh scripts/get-sk.sh
    1.13 ENV CARGO_HOME="/usr/local/share/cargo"
    1.14 ENV RUSTUP_HOME="/usr/local/share/rustup"
    1.15-RUN make rustup-install tree-sitter-langs-install
    1.16+RUN .stash/sk make rustup tree-sitter-langs
    1.17 ENV PATH="$PATH:/usr/local/share/cargo/bin"
    1.18 RUN rustup update 
    1.19-#RUN rustup default nightly # disabled due to issue with zellij build
    1.20-# ADD etc/sbclrc /etc/sbclrc
    1.21+RUN rustup default nightly
    1.22 RUN cd .. && rm -rf infra core
    1.23 RUN adduser -D -u ${ID} -k /etc/skel ${WORKER}
    1.24 USER ${WORKER}