Skip to content

Commit d1b8c69

Browse files
author
marwan37
committed
edit Dockerfile to properly copy settings.json into a .vscode dir
1 parent c3fc65f commit d1b8c69

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

omni-reader/Dockerfile.sandbox

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -34,10 +34,10 @@ RUN git clone --depth 1 https://github.com/zenml-io/zenml-projects.git /tmp/zenm
3434
RUN echo "OPENAI_API_KEY=YOUR_OPENAI_API_KEY_HERE" > .env && \
3535
echo "MISTRAL_API_KEY=YOUR_MISTRAL_API_KEY_HERE" >> .env
3636

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

4242
# Set environment variable to skip CPU checks for Polars as a fallback
4343
ENV POLARS_SKIP_CPU_CHECK=1

0 commit comments

Comments
 (0)