From 1da6ac8de7d9b851b56ef99ef94cf2d98b82a659 Mon Sep 17 00:00:00 2001 From: Blurryface05 Date: Fri, 27 Sep 2019 23:01:34 +0000 Subject: [PATCH] i new file: .gitpod.Dockerfile new file: .gitpod.yml --- .gitpod.Dockerfile | 12 ++++++++++++ .gitpod.yml | 11 +++++++++++ 2 files changed, 23 insertions(+) create mode 100644 .gitpod.Dockerfile create mode 100644 .gitpod.yml diff --git a/.gitpod.Dockerfile b/.gitpod.Dockerfile new file mode 100644 index 0000000000..b795e6cac7 --- /dev/null +++ b/.gitpod.Dockerfile @@ -0,0 +1,12 @@ +FROM gitpod/workspace-full + +USER root + +# Install custom tools, runtime, etc. using apt-get +# For example, the command below would install "bastet" - a command line tetris clone: +# +# RUN apt-get update \ +# && apt-get install -y bastet \ +# && apt-get clean && rm -rf /var/cache/apt/* && rm -rf /var/lib/apt/lists/* && rm -rf /tmp/* +# +# More information: https://www.gitpod.io/docs/42_config_docker/ diff --git a/.gitpod.yml b/.gitpod.yml new file mode 100644 index 0000000000..87dd64a333 --- /dev/null +++ b/.gitpod.yml @@ -0,0 +1,11 @@ +image: + file: docker/Dockerfile + +# List the ports you want to expose and what to do when they are served. See https://www.gitpod.io/docs/43_config_ports/ +ports: +- port: 3000 + +# List the start up tasks. You can start them in parallel in multiple terminals. See https://www.gitpod.io/docs/44_config_start_tasks/ +tasks: +- init: echo 'init script' # runs during prebuild + command: echo 'start script'