mirror of
https://github.com/nushell/nushell
synced 2024-12-26 13:03:07 +00:00
1da6ac8de7
new file: .gitpod.Dockerfile new file: .gitpod.yml
12 lines
403 B
Docker
12 lines
403 B
Docker
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/
|