You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
# remove insecure notification check without impacting other patches (look at https://github.com/coder/code-server/blob/main/patches/insecure-notification.diff for what to remove)
25
25
RUN sed -i '/if (!window.isSecureContext)/,+24d' lib/vscode/src/vs/workbench/browser/client.ts
26
-
RUN yarn install --frozen-lockfile
27
-
RUN yarn add ternary-stream # address 1.83.1 build issue https://github.com/cloudacademy/ca-code-server/actions/runs/6778516221/job/18424106568
28
-
RUN yarn build
29
-
RUN VERSION=${VS_CODE_VERSION} yarn build:vscode
30
-
RUN yarn release
31
-
RUN yarn release:standalone
32
-
RUN VERSION=${VS_CODE_VERSION} yarn package
26
+
RUN npm install
27
+
RUN npm run build
28
+
RUN VERSION=${VS_CODE_VERSION} npm run build:vscode
29
+
RUN npm run release
30
+
RUN npm run release:standalone
31
+
RUN VERSION=${VS_CODE_VERSION} npm run package
33
32
34
33
35
34
# release is based on https://github.com/coder/code-server/blob/70aa1b77226ea40e5d661103de7b354f742a76df/ci/release-image/Dockerfile
0 commit comments