-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Introduce end-of-line normalization fix line endings fix line endings... again... i have no idea what im doing fix line endings
- Loading branch information
Showing
4 changed files
with
45 additions
and
42 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,27 +1,24 @@ | ||
{ | ||
"build": { | ||
"dockerfile": "dockerfile" | ||
}, | ||
"features": { | ||
"ghcr.io/devcontainers/features/git:1": {}, | ||
}, | ||
"postCreateCommand": "zsh /workspaces/DevContainer/.devcontainer/scripts/post-create.zsh", | ||
"postStartCommand": "zsh /workspaces/DevContainer/.devcontainer/scripts/post-start.zsh", | ||
"customizations": { | ||
"vscode": { | ||
"extensions": [ | ||
"ms-python.python", | ||
"streetsidesoftware.code-spell-checker", | ||
"charliermarsh.ruff", | ||
"njpwerner.autodocstring", | ||
"tamasfe.even-better-toml", | ||
"ms-python.black-formatter", | ||
"ms-python.isort", | ||
"ms-toolsai.jupyter", | ||
"ms-azuretools.vscode-docker", | ||
"ms-vscode-remote.remote-containers", | ||
"p403n1x87.austin-vscode" | ||
] | ||
} | ||
} | ||
{ | ||
"build": { | ||
"dockerfile": "dockerfile" | ||
}, | ||
"customizations": { | ||
"vscode": { | ||
"extensions": [ | ||
"ms-python.python", | ||
"streetsidesoftware.code-spell-checker", | ||
"charliermarsh.ruff", | ||
"njpwerner.autodocstring", | ||
"tamasfe.even-better-toml", | ||
"ms-python.black-formatter", | ||
"ms-python.isort", | ||
"ms-toolsai.jupyter", | ||
"ms-azuretools.vscode-docker", | ||
"ms-vscode-remote.remote-containers", | ||
"p403n1x87.austin-vscode" | ||
] | ||
} | ||
}, | ||
"postCreateCommand": "zsh /workspaces/DevContainer/.devcontainer/scripts/post-create.zsh", | ||
"postStartCommand": "zsh /workspaces/DevContainer/.devcontainer/scripts/post-start.zsh" | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,16 +1,16 @@ | ||
FROM mcr.microsoft.com/devcontainers/python:3.12 | ||
ENV DEBIAN_FRONTEND=noninteractive | ||
RUN apt-get update && \ | ||
apt-get install -y --no-install-recommends \ | ||
git git-lfs austin graphviz graphviz-dev libboost-all-dev libilmbase-dev \ | ||
libopenexr-dev libpng-dev libtiff5-dev | ||
RUN apt-get autoremove -y && \ | ||
apt-get clean -y && \ | ||
DEBIAN_FRONTEND= | ||
USER vscode | ||
RUN pipx install poetry | ||
FROM mcr.microsoft.com/devcontainers/python:3.12 | ||
|
||
ENV DEBIAN_FRONTEND=noninteractive | ||
|
||
RUN apt-get update && \ | ||
apt-get install -y --no-install-recommends \ | ||
git git-lfs austin graphviz graphviz-dev libboost-all-dev libilmbase-dev \ | ||
libopenexr-dev libpng-dev libtiff5-dev | ||
|
||
RUN apt-get autoremove -y && \ | ||
apt-get clean -y && \ | ||
DEBIAN_FRONTEND= | ||
|
||
USER vscode | ||
RUN pipx install poetry | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
* text eol=lf |