Spaces:
Sleeping
Sleeping
Create Dockerfile
Browse files- .devcontainer/Dockerfile +15 -0
.devcontainer/Dockerfile
ADDED
@@ -0,0 +1,15 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
ARG VARIANT="3.10-bookworm"
|
2 |
+
FROM mcr.microsoft.com/devcontainers/python:1-${VARIANT}
|
3 |
+
#FROM langchain/langchain
|
4 |
+
|
5 |
+
# [Optional] Uncomment if you want to install an additional version of node using nvm
|
6 |
+
# ARG EXTRA_NODE_VERSION=10
|
7 |
+
# RUN su node -c "source /usr/local/share/nvm/nvm.sh && nvm install ${EXTRA_NODE_VERSION}"
|
8 |
+
|
9 |
+
# [Optional] Uncomment if you want to install more global node modules
|
10 |
+
# RUN su node -c "npm install -g <your-package-list-here>"
|
11 |
+
|
12 |
+
#COPY library-scripts/github-debian.sh /tmp/library-scripts/
|
13 |
+
RUN apt-get update && apt-get update
|
14 |
+
RUN pip install --upgrade pip
|
15 |
+
#RUN pip install -r requirements.txt
|