Skip to content
Please note that GitHub no longer supports your web browser.

We recommend upgrading to the latest Google Chrome or Firefox.

Learn more
Permalink
Browse files

Gitpod configuration

  • Loading branch information...
Daniel-Mietchen committed Nov 28, 2019
1 parent 508ee37 commit ee7bdfd361d47f1f668d7afc3e9fe34451124455
Showing with 24 additions and 0 deletions.
  1. +12 −0 .gitpod.Dockerfile
  2. +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

Please sign in to comment.
You can’t perform that action at this time.