@m14i/sith 1.7.2 → 1.7.4
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/config.d.ts +1 -1
- package/dist/index.js +1 -1
- package/docker/Dockerfile +3 -1
- package/package.json +1 -1
package/dist/config.d.ts
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
export declare const DOCKER_CONFIG: {
|
|
2
2
|
readonly imageName: "opencode-ci:latest";
|
|
3
|
-
readonly prebuiltImage: "ghcr.io/
|
|
3
|
+
readonly prebuiltImage: "ghcr.io/merzoukemansouri/sith:latest";
|
|
4
4
|
readonly folderName: "docker";
|
|
5
5
|
readonly dockerfileName: "Dockerfile";
|
|
6
6
|
readonly workspaceMount: "/workspace";
|
package/dist/index.js
CHANGED
|
@@ -35755,7 +35755,7 @@ __webpack_async_result__();
|
|
|
35755
35755
|
// Docker configuration
|
|
35756
35756
|
const DOCKER_CONFIG = {
|
|
35757
35757
|
imageName: "opencode-ci:latest",
|
|
35758
|
-
prebuiltImage: "ghcr.io/
|
|
35758
|
+
prebuiltImage: "ghcr.io/merzoukemansouri/sith:latest",
|
|
35759
35759
|
folderName: "docker",
|
|
35760
35760
|
dockerfileName: "Dockerfile",
|
|
35761
35761
|
workspaceMount: "/workspace",
|
package/docker/Dockerfile
CHANGED
|
@@ -65,7 +65,9 @@ RUN mkdir -p /home/sith && \
|
|
|
65
65
|
echo "sith:x:1000:" >> /etc/group && \
|
|
66
66
|
mkdir -p /home/sith/.opencode /home/sith/.npm-global /workspace && \
|
|
67
67
|
cp -r /root/.opencode/* /home/sith/.opencode/ 2>/dev/null || true && \
|
|
68
|
-
|
|
68
|
+
mkdir -p /nix/var/nix/profiles/per-user/sith && \
|
|
69
|
+
chown -R 1000:1000 /home/sith /workspace /opt/sith /nix/var/nix/profiles/per-user/sith && \
|
|
70
|
+
chmod 755 /nix/var/nix/profiles/per-user
|
|
69
71
|
|
|
70
72
|
# Copier la configuration npm pour l'utilisateur sith
|
|
71
73
|
RUN echo "registry=https://registry.npmjs.org/" > /home/sith/.npmrc && \
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@m14i/sith",
|
|
3
|
-
"version": "1.7.
|
|
3
|
+
"version": "1.7.4",
|
|
4
4
|
"description": "Turn your context to the dark side. Standardize and share your OpenCode setup with a fully dockerized environment, designed for seamless collaboration and CI integration.",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"repository": {
|