mirror of
https://github.com/gitpod-io/gitpod.git
synced 2025-12-08 17:36:30 +00:00
14 lines
474 B
Docker
14 lines
474 B
Docker
# Copyright (c) 2020 Gitpod GmbH. All rights reserved.
|
|
# Licensed under the GNU Affero General Public License (AGPL).
|
|
# See License-AGPL.txt in the project root for license information.
|
|
|
|
FROM alpine:3.7
|
|
|
|
RUN apk add bash
|
|
RUN wget https://storage.googleapis.com/kubernetes-release/release/v1.11.0/bin/linux/amd64/kubectl -O /usr/local/bin/kubectl && \
|
|
chmod +x /usr/local/bin/kubectl
|
|
|
|
WORKDIR /app
|
|
COPY node-daemon.sh /app
|
|
ENTRYPOINT ["/bin/bash", "/app/node-daemon.sh"]
|