Skip to content

Commit 998fa91

Browse files
authored
Merge pull request #59 from NASA-Openscapes/positron-server
Add positron server and bump earthaccess to 0.18
2 parents 20a6025 + 3c5ecb1 commit 998fa91

5 files changed

Lines changed: 345 additions & 290 deletions

File tree

.gitignore

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
# License files
2+
*.lic

ci/Dockerfile

Lines changed: 11 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,9 +2,18 @@ FROM pangeo/base-image:2024.08.18
22
# build file for pangeo images
33
RUN conda init zsh && conda init bash
44

5+
USER root
6+
COPY --chmod=755 install-positron.sh ./
7+
RUN ./install-positron.sh
8+
9+
# To test locally, put the license file in ci/positron-license.lic and uncomment
10+
# the line below to copy it into the image. Do not commit the license file to git.
11+
# COPY positron-license.lic /opt/positron-server/resources/activation/linux/x86_64/license.lic
12+
513
USER ${NB_USER}
614

7-
RUN chmod +x install-vscode-ext.sh && ./install-vscode-ext.sh vscode-extensions.txt
15+
COPY --chmod=755 install-vscode-ext.sh ./
16+
COPY vscode-extensions.txt ./
17+
RUN ./install-vscode-ext.sh vscode-extensions.txt
818

919
ENV JUPYTERHUB_HTTP_REFERER=https://openscapes.2i2c.cloud/
10-

0 commit comments

Comments
 (0)