File tree 1 file changed +4
-4
lines changed 1 file changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -17,9 +17,9 @@ COPY . .
17
17
RUN yarn \
18
18
&& MINIFY=true GITHUB_TOKEN="${githubToken}" yarn build "${vscodeVersion}" "${codeServerVersion}" \
19
19
&& yarn binary "${vscodeVersion}" "${codeServerVersion}" \
20
- && mv "/src/binaries/code-server${codeServerVersion}-vsc${vscodeVersion}-linux-x86_64" /src/build /code-server \
21
- && rm -r /src/build/vscode-* \
22
- && rm -r /src/build/code-server*-linux-*
20
+ && mv "/src/binaries/code-server${codeServerVersion}-vsc${vscodeVersion}-linux-x86_64" /src/binaries /code-server \
21
+ && rm -r /src/build \
22
+ && rm -r /src/source
23
23
24
24
# We deploy with ubuntu so that devs have a familiar environment.
25
25
FROM ubuntu:18.04
@@ -54,7 +54,7 @@ WORKDIR /home/coder/project
54
54
# mount. So that they do not lose their data if they delete the container.
55
55
VOLUME [ "/home/coder/project" ]
56
56
57
- COPY --from=0 /src/build /code-server /usr/local/bin/code-server
57
+ COPY --from=0 /src/binaries /code-server /usr/local/bin/code-server
58
58
EXPOSE 8080
59
59
60
60
ENTRYPOINT ["dumb-init" , "code-server" , "--host" , "0.0.0.0" ]
You can’t perform that action at this time.
0 commit comments