Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
FROM ubuntu:22.04

# Set build arguments for version and architecture
ARG VERSION=v0.2.0
ARG VERSION=v0.4.0
ARG TARGETARCH=amd64
ARG RUDDERSTACK_PAT

Expand Down Expand Up @@ -45,9 +45,9 @@ EOF

# Download and install code-server from GitHub releases
RUN if [ "$TARGETARCH" = "arm64" ]; then \
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; \
else \
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; \
fi

# Switch to codeuser for extension installation and MCP setup
Expand Down