We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 0d3ce08 commit 3b42da7Copy full SHA for 3b42da7
1 file changed
.devcontainer/Dockerfile
@@ -0,0 +1,9 @@
1
+FROM mcr.microsoft.com/devcontainers/python:3-3.14-trixie
2
+# Install
3
+RUN apt-get update && apt-get install -y git vim curl tmux wget
4
+RUN pip install uv
5
+RUN cd /tmp && \
6
+curl -LO https://github.com/specstoryai/getspecstory/releases/latest/download/SpecStoryCLI_Linux_x86_64.tar.gz && \
7
+tar -xzf SpecStoryCLI_Linux_x86_64.tar.gz && \
8
+mv specstory /usr/local/bin/ && chmod +x /usr/local/bin/specstory
9
+RUN curl -fsSL https://claude.ai/install.sh | sudo -u vscode bash
0 commit comments