Update Dockerfile
Browse files- Dockerfile +2 -2
Dockerfile
CHANGED
|
@@ -15,10 +15,10 @@ WORKDIR /app
|
|
| 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
|
|
|
|
| 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"]
|