forked from lalokalabs/labzero-example
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.gitpod.Dockerfile
29 lines (21 loc) · 1.04 KB
/
.gitpod.Dockerfile
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
# You can find the new timestamped tags here: https://hub.docker.com/r/gitpod/workspace-full/tags
FROM lalokalabs/gitpod-tutorial:latest
#ENV PYTHON_VERSION=3.10.6
#RUN pyenv install ${PYTHON_VERSION}
#RUN pyenv global ${PYTHON_VERSION}
#ENV NODE_VERSION=14.20.0
#RUN bash -c ' source $HOME/.nvm/nvm.sh && nvm install ${NODE_VERSION} \
# && nvm use ${NODE_VERSION} && nvm alias default ${NODE_VERSION}'
#RUN echo "nvm use default &>/dev/null" >> ~/.bashrc.d/51-nvm-fix
#RUN pip install -U pip \
# && pip install pipx \
# && pipx install typecov==0.2.1 \
# && pipx install pre-commit==2.20.0 \
# && pipx install pre-commit-hooks==4.3.0 \
# && pipx install codespell==2.1.0
# [Optional] Uncomment this section to install additional OS packages.
#RUN sudo apt-get update && export DEBIAN_FRONTEND=noninteractive \
# && sudo apt-get -y install --no-install-recommends netcat util-linux \
# vim bash-completion yamllint postgresql-client python3-dev
#RUN poetry self update
#RUN curl https://cli-assets.heroku.com/install.sh | sh