We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 25ed445 commit 133880bCopy full SHA for 133880b
frameworks/Zig/httpz/httpz.dockerfile
@@ -1,4 +1,4 @@
1
-FROM eloitor/zig:0.13.0 AS build
+FROM eloitor/zig:0.13.0
2
3
ENV PG_USER=benchmarkdbuser
4
ENV PG_PASS=benchmarkdbpass
@@ -14,12 +14,8 @@ COPY build.zig build.zig
14
15
RUN zig build -Doptimize=ReleaseFast
16
17
-FROM ubuntu:24.04
18
-
19
RUN apt-get update && apt-get install -y ca-certificates
20
21
-COPY --from=build /app/zig-out/bin/httpz /server
22
23
EXPOSE 3000
24
25
-CMD ["/server"]
+CMD ./app/zig-out/bin/httpz
0 commit comments