new file:   .gitpod.Dockerfile
	new file:   .gitpod.yml
This commit is contained in:
Blurryface05 2019-09-27 23:01:34 +00:00
parent 2b89ddfb9e
commit 1da6ac8de7
2 changed files with 23 additions and 0 deletions

12
.gitpod.Dockerfile vendored Normal file
View file

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

11
.gitpod.yml Normal file
View file

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