mirror of
https://github.com/nushell/nushell
synced 2024-12-25 04:23:10 +00:00
i
new file: .gitpod.Dockerfile new file: .gitpod.yml
This commit is contained in:
parent
2b89ddfb9e
commit
1da6ac8de7
2 changed files with 23 additions and 0 deletions
12
.gitpod.Dockerfile
vendored
Normal file
12
.gitpod.Dockerfile
vendored
Normal 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
11
.gitpod.yml
Normal 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'
|
Loading…
Reference in a new issue