From ac259cb8a99365cd6abe2b129eef659cc985b60d Mon Sep 17 00:00:00 2001 From: Anmol Sethi Date: Thu, 7 Mar 2019 16:34:49 -0500 Subject: [PATCH 1/2] repo: add a pull request template --- .github/pull_request_template.md | 6 ++++++ 1 file changed, 6 insertions(+) create mode 100644 .github/pull_request_template.md diff --git a/.github/pull_request_template.md b/.github/pull_request_template.md new file mode 100644 index 000000000000..e056fdf5f161 --- /dev/null +++ b/.github/pull_request_template.md @@ -0,0 +1,6 @@ + + +### Describe in detail the problem you had and how this PR fixes it + +### Is there an open issue you can link to? + From f36d16868b818d5657a88d674c34a6023af0cc43 Mon Sep 17 00:00:00 2001 From: Anmol Sethi Date: Thu, 7 Mar 2019 16:35:34 -0500 Subject: [PATCH 2/2] Dockerfile: include arch when copying Thanks @yush1ga and @zerdos --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index 87d7fcbf6b6c..06f26827660b 100644 --- a/Dockerfile +++ b/Dockerfile @@ -18,7 +18,7 @@ RUN yarn && yarn task build:server:binary # We deploy with ubuntu so that devs have a familiar environemnt. FROM ubuntu:18.10 WORKDIR /root/project -COPY --from=0 /src/packages/server/cli-linux /usr/local/bin/code-server +COPY --from=0 /src/packages/server/cli-linux-x64 /usr/local/bin/code-server EXPOSE 8443 RUN apt-get update && apt-get install -y \ openssl \