Spaces:
Running
Running
fix build
Browse files- Dockerfile +1 -1
Dockerfile
CHANGED
|
@@ -6,7 +6,7 @@ RUN apt-get update && \
|
|
| 6 |
&& rm -rf /var/lib/apt/lists/* /var/cache/apt/archives/*
|
| 7 |
|
| 8 |
COPY . .
|
| 9 |
-
RUN
|
| 10 |
|
| 11 |
FROM ubuntu:22.04 AS runtime
|
| 12 |
WORKDIR /app
|
|
|
|
| 6 |
&& rm -rf /var/lib/apt/lists/* /var/cache/apt/archives/*
|
| 7 |
|
| 8 |
COPY . .
|
| 9 |
+
RUN cmake -B build && cmake --build build -j --config Release
|
| 10 |
|
| 11 |
FROM ubuntu:22.04 AS runtime
|
| 12 |
WORKDIR /app
|