From 96175d36eaa49a032c252b6c1dba4860ad057890 Mon Sep 17 00:00:00 2001 From: Anmol Sethi Date: Thu, 7 Mar 2019 16:48:11 -0500 Subject: [PATCH] Handle arch in dockerfile and add PR template (#109) * repo: add a pull request template * Dockerfile: include arch when copying Thanks @yush1ga and @zerdos --- .github/pull_request_template.md | 6 ++++++ Dockerfile | 2 +- 2 files changed, 7 insertions(+), 1 deletion(-) 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 00000000..e056fdf5 --- /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? + diff --git a/Dockerfile b/Dockerfile index 87d7fcbf..06f26827 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 \