We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents f32dc20 + 8ad6730 commit 84dcf99Copy full SHA for 84dcf99
2 files changed
.cursor/Dockerfile
@@ -0,0 +1,10 @@
1
+FROM oven/bun:1.3.5
2
+
3
+# Create a non-root user
4
+RUN useradd -m -s /bin/bash developer
5
6
+# Switch to the non-root user
7
+USER developer
8
9
+# Set working directory to the user's home
10
+WORKDIR /home/developer
.cursor/environment.json
@@ -0,0 +1,13 @@
+{
+ "build": {
+ "context": ".",
+ "dockerfile": "Dockerfile"
+ },
+ "install": "bun install",
+ "terminals": [
+ {
+ "name": "make serve",
+ "command": "make serve"
11
+ }
12
+ ]
13
+}
0 commit comments