-
Notifications
You must be signed in to change notification settings - Fork 1.2k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Signed-off-by: Pratyush-Saxena <pratyush.19b131054@abes.ac.in> Signed-off-by: Pratyush-Saxena <52444607+Pratyush-Saxena@users.noreply.github.com> Signed-off-by: Pratyush-Saxena <saxena18prats@gmail.com>
- Loading branch information
1 parent
828c72d
commit 371a02f
Showing
2 changed files
with
27 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,15 @@ | ||
FROM gitpod/workspace-full | ||
|
||
USER gitpod | ||
RUN sudo apt-get -q update && \ | ||
sudo apt-get install -yq bastet && \ | ||
sudo rm -rf /var/lib/apt/lists/* | ||
|
||
# Install custom tools, runtime, etc. using apt-get | ||
# For example, the command below would install "bastet" - a command line tetris clone: | ||
# | ||
# RUN sudo apt-get -q update && \ | ||
# sudo apt-get install -yq bastet && \ | ||
# sudo rm -rf /var/lib/apt/lists/* | ||
# | ||
# More information: https://www.gitpod.io/docs/config-docker/ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,12 @@ | ||
image: | ||
file: .gitpod.Dockerfile | ||
|
||
# List the ports you want to expose and what to do when they are served. See https://www.gitpod.io/docs/config-ports/ | ||
ports: | ||
- port: 3000 | ||
onOpen: open-preview | ||
|
||
# List the start up tasks. You can start them in parallel in multiple terminals. See https://www.gitpod.io/docs/config-start-tasks/ | ||
tasks: | ||
- init: echo 'init script' # runs during prebuild | ||
command: echo 'start script' |