Skip to content

Commit

Permalink
another attempt at dockerfile perms
Browse files Browse the repository at this point in the history
  • Loading branch information
sfc-gh-jhansen committed Mar 8, 2024
1 parent e80abe7 commit 086c1db
Showing 1 changed file with 3 additions and 5 deletions.
8 changes: 3 additions & 5 deletions .devcontainer/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -5,11 +5,9 @@ WORKDIR /home/vscode

# Configure SnowSQL
RUN mkdir .snowflake
COPY .devcontainer/config.toml .snowflake
COPY .devcontainer/connections.toml .snowflake
RUN chown vscode .snowflake/config.toml \
&& chown vscode .snowflake/connections.toml \
&& chmod 0600 .snowflake/config.toml \
COPY --chown=vscode:vscode .devcontainer/config.toml .snowflake
COPY --chown=vscode:vscode .devcontainer/connections.toml .snowflake
RUN chmod 0600 .snowflake/config.toml \
&& chmod 0600 .snowflake/connections.toml

# Create the conda environment
Expand Down

0 comments on commit 086c1db

Please sign in to comment.