Skip to content

Commit 96175d3

Browse files
nhooyrkylecarbs
authored andcommitted
Handle arch in dockerfile and add PR template (#109)
* repo: add a pull request template * Dockerfile: include arch when copying Thanks @yush1ga and @zerdos
1 parent c8afb79 commit 96175d3

File tree

2 files changed

+7
-1
lines changed

2 files changed

+7
-1
lines changed

.github/pull_request_template.md

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

Dockerfile

+1-1
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ RUN yarn && yarn task build:server:binary
1818
# We deploy with ubuntu so that devs have a familiar environemnt.
1919
FROM ubuntu:18.10
2020
WORKDIR /root/project
21-
COPY --from=0 /src/packages/server/cli-linux /usr/local/bin/code-server
21+
COPY --from=0 /src/packages/server/cli-linux-x64 /usr/local/bin/code-server
2222
EXPOSE 8443
2323
RUN apt-get update && apt-get install -y \
2424
openssl \

0 commit comments

Comments
 (0)