Handle arch in dockerfile and add PR template (#109)

* repo: add a pull request template

* Dockerfile: include arch when copying

Thanks @yush1ga and @zerdos
This commit is contained in:
Anmol Sethi 2019-03-07 16:48:11 -05:00 committed by Kyle Carberry
parent c8afb7908e
commit 96175d36ea
2 changed files with 7 additions and 1 deletions

6
.github/pull_request_template.md vendored Normal file
View File

@ -0,0 +1,6 @@
<!-- Please answer these questions before submitting your PR. Thanks! -->
### Describe in detail the problem you had and how this PR fixes it
### Is there an open issue you can link to?

View File

@ -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 \