Update source & build paths in Dockerfile
This commit is contained in:
parent
82e2b8a169
commit
2458cde498
|
@ -17,9 +17,9 @@ COPY . .
|
||||||
RUN yarn \
|
RUN yarn \
|
||||||
&& MINIFY=true GITHUB_TOKEN="${githubToken}" yarn build "${vscodeVersion}" "${codeServerVersion}" \
|
&& MINIFY=true GITHUB_TOKEN="${githubToken}" yarn build "${vscodeVersion}" "${codeServerVersion}" \
|
||||||
&& yarn binary "${vscodeVersion}" "${codeServerVersion}" \
|
&& yarn binary "${vscodeVersion}" "${codeServerVersion}" \
|
||||||
&& mv "/src/binaries/code-server${codeServerVersion}-vsc${vscodeVersion}-linux-x86_64" /src/build/code-server \
|
&& mv "/src/binaries/code-server${codeServerVersion}-vsc${vscodeVersion}-linux-x86_64" /src/binaries/code-server \
|
||||||
&& rm -r /src/build/vscode-* \
|
&& rm -r /src/build \
|
||||||
&& rm -r /src/build/code-server*-linux-*
|
&& rm -r /src/source
|
||||||
|
|
||||||
# We deploy with ubuntu so that devs have a familiar environment.
|
# We deploy with ubuntu so that devs have a familiar environment.
|
||||||
FROM ubuntu:18.04
|
FROM ubuntu:18.04
|
||||||
|
@ -54,7 +54,7 @@ WORKDIR /home/coder/project
|
||||||
# mount. So that they do not lose their data if they delete the container.
|
# mount. So that they do not lose their data if they delete the container.
|
||||||
VOLUME [ "/home/coder/project" ]
|
VOLUME [ "/home/coder/project" ]
|
||||||
|
|
||||||
COPY --from=0 /src/build/code-server /usr/local/bin/code-server
|
COPY --from=0 /src/binaries/code-server /usr/local/bin/code-server
|
||||||
EXPOSE 8080
|
EXPOSE 8080
|
||||||
|
|
||||||
ENTRYPOINT ["dumb-init", "code-server", "--host", "0.0.0.0"]
|
ENTRYPOINT ["dumb-init", "code-server", "--host", "0.0.0.0"]
|
||||||
|
|
Loading…
Reference in New Issue