We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 03907a7 commit 9c2679aCopy full SHA for 9c2679a
Dockerfile
@@ -2,7 +2,7 @@
2
FROM ubuntu:22.04
3
4
# Set build arguments for version and architecture
5
-ARG VERSION=v0.2.0
+ARG VERSION=v0.4.0
6
ARG TARGETARCH=amd64
7
ARG RUDDERSTACK_PAT
8
@@ -45,9 +45,9 @@ EOF
45
46
# Download and install code-server from GitHub releases
47
RUN if [ "$TARGETARCH" = "arm64" ]; then \
48
- dpkg -i code-server_0.3.0_arm64.deb || apt-get install -f -y; \
+ dpkg -i code-server_0.4.0_arm64.deb || apt-get install -f -y; \
49
else \
50
- dpkg -i code-server_0.3.0_amd64.deb || apt-get install -f -y; \
+ dpkg -i code-server_0.4.0_amd64.deb || apt-get install -f -y; \
51
fi
52
53
# Switch to codeuser for extension installation and MCP setup
0 commit comments