RohanVashisht commited on
Commit
9faee16
·
verified ·
1 Parent(s): 283dbbd

Update Dockerfile

Browse files
Files changed (1) hide show
  1. Dockerfile +2 -2
Dockerfile CHANGED
@@ -15,10 +15,10 @@ WORKDIR /app
15
  COPY . .
16
 
17
  # Build the Zig application
18
- RUN zig build -Drelease-small=true
19
 
20
  # Expose port 3000
21
  EXPOSE 3000
22
 
23
  # Run the application, binding to 0.0.0.0:3000
24
- CMD ["zig", "build", "run", "--", "-host", "0.0.0.0", "-port", "3000"]
 
15
  COPY . .
16
 
17
  # Build the Zig application
18
+ RUN zig build
19
 
20
  # Expose port 3000
21
  EXPOSE 3000
22
 
23
  # Run the application, binding to 0.0.0.0:3000
24
+ CMD ["./zig-out/bin/newmine"]