Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions omni-reader/Dockerfile.sandbox
Original file line number Diff line number Diff line change
Expand Up @@ -34,10 +34,10 @@ RUN git clone --depth 1 https://github.com/zenml-io/zenml-projects.git /tmp/zenm
RUN echo "OPENAI_API_KEY=YOUR_OPENAI_API_KEY_HERE" > .env && \
echo "MISTRAL_API_KEY=YOUR_MISTRAL_API_KEY_HERE" >> .env

# Create a settings directory (mainly to auto-apply the dark theme)
RUN mkdir -p /root/.local/share/code-server/User
# Create a .vscode directory (mainly to auto-apply the dark theme)
RUN mkdir -p /workspace/.vscode
# Copy settings file
COPY settings.json /root/.local/share/code-server/User/
COPY settings.json /workspace/.vscode/settings.json

# Set environment variable to skip CPU checks for Polars as a fallback
ENV POLARS_SKIP_CPU_CHECK=1
Expand Down
2 changes: 1 addition & 1 deletion omni-reader/settings.json
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
"python.analysis.extraPaths": ["/workspace"],
"workbench.startupEditor": "none",
"terminal.integrated.defaultProfile.linux": "bash",
"workbench.colorTheme": "Dark Modern",
"workbench.colorTheme": "Default Dark Modern",
"python.linting.enabled": true,
"python.linting.pylintEnabled": true,
"files.exclude": {
Expand Down
Loading