Permalink
Please
sign in to comment.
Showing
with
24 additions
and 0 deletions.
- +12 −0 .gitpod.Dockerfile
- +12 −0 .gitpod.yml
@@ -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/ |
@@ -0,0 +1,12 @@ | ||
image: | ||
file: .gitpod.Dockerfile | ||
|
||
# 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: pip install -r requirements.txt # runs during prebuild | ||
command: python runserver.py | ||
|
||
# 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: 8100 | ||
onOpen: open-browser |
0 comments on commit
ee7bdfd