Fix devcontainer
This commit is contained in:
parent
98da880f0b
commit
518e986632
|
|
@ -6,6 +6,3 @@ RUN apt-get update && export DEBIAN_FRONTEND=noninteractive \
|
||||||
&& apt-get -y install clang lld \
|
&& apt-get -y install clang lld \
|
||||||
&& apt-get autoremove -y && apt-get clean -y
|
&& apt-get autoremove -y && apt-get clean -y
|
||||||
|
|
||||||
RUN curl -fsSL https://ollama.com/install.sh | sh
|
|
||||||
|
|
||||||
RUN cargo instal sqlx-cli
|
|
||||||
|
|
|
||||||
|
|
@ -15,10 +15,10 @@
|
||||||
// "features": {},
|
// "features": {},
|
||||||
|
|
||||||
// Use 'forwardPorts' to make a list of ports inside the container available locally.
|
// Use 'forwardPorts' to make a list of ports inside the container available locally.
|
||||||
"forwardPorts": [5432],
|
"forwardPorts": [5432, 40192],
|
||||||
|
|
||||||
// Use 'postCreateCommand' to run commands after the container is created.
|
// Use 'postCreateCommand' to run commands after the container is created.
|
||||||
// "postCreateCommand": "rustc --version",
|
"postCreateCommand": "cargo install sqlx-cli",
|
||||||
|
|
||||||
// Configure tool-specific properties.
|
// Configure tool-specific properties.
|
||||||
// "customizations": {},
|
// "customizations": {},
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue