File tree Expand file tree Collapse file tree 4 files changed +4
-3
lines changed
root/etc/services.d/code-server Expand file tree Collapse file tree 4 files changed +4
-3
lines changed Original file line number Diff line number Diff line change 25
25
| awk '/tag_name/{print $4;exit}' FS='[""]' ); \
26
26
fi && \
27
27
CODE_URL=$(curl -sX GET "https://api.github.com/repos/cdr/code-server/releases/tags/${CODE_RELEASE}" \
28
- | jq -r '.assets[] | select(.browser_download_url | contains("linux-x86_64 ")) | .browser_download_url' ) && \
28
+ | jq -r '.assets[] | select(.browser_download_url | contains("linux-amd64 ")) | .browser_download_url' ) && \
29
29
mkdir -p /app/code-server && \
30
30
curl -o \
31
31
/tmp/code.tar.gz -L \
Original file line number Diff line number Diff line change @@ -234,6 +234,7 @@ Once registered you can define the dockerfile to use with `-f Dockerfile.aarch64
234
234
235
235
## Versions
236
236
237
+ * ** 17.05.20:** - Fixes for breaking changes in 3.3.0.
237
238
* ** 29.04.20:** - Update start arguments.
238
239
* ** 01.04.20:** - Structural changes required for v3.
239
240
* ** 17.01.20:** - Fix artifact url retrieval from github.
Original file line number Diff line number Diff line change @@ -65,6 +65,7 @@ app_setup_block: |
65
65
66
66
# changelog
67
67
changelogs :
68
+ - { date: "17.05.20:", desc: "Fixes for breaking changes in 3.3.0." }
68
69
- { date: "29.04.20:", desc: "Update start arguments." }
69
70
- { date: "01.04.20:", desc: "Structural changes required for v3." }
70
71
- { date: "17.01.20:", desc: "Fix artifact url retrieval from github." }
Original file line number Diff line number Diff line change 9
9
10
10
exec \
11
11
s6-setuidgid abc \
12
- /app/code-server/code-server \
12
+ /app/code-server/bin/ code-server \
13
13
--bind-addr 0.0.0.0:8443 \
14
14
--user-data-dir /config/data \
15
15
--extensions-dir /config/extensions \
16
16
--disable-telemetry \
17
- --disable-updates \
18
17
--auth "${AUTH}" \
19
18
/config/workspace
You can’t perform that action at this time.
0 commit comments