Dockerfile: fix add website
Signed-off-by: Frank Villaro-Dixon <frank@villaro-dixon.eu>
This commit is contained in:
parent
61259dc4fb
commit
ffc00dd2e6
1 changed files with 3 additions and 2 deletions
|
@ -19,5 +19,6 @@ RUN cargo build --release --bin api-server
|
||||||
FROM debian:bookworm-slim AS runtime
|
FROM debian:bookworm-slim AS runtime
|
||||||
RUN apt update && apt install -y gdal-bin
|
RUN apt update && apt install -y gdal-bin
|
||||||
WORKDIR /app
|
WORKDIR /app
|
||||||
COPY --from=builder /app/target/release/api-server /usr/local/bin
|
COPY --from=builder /app/target/release/api-server .
|
||||||
ENTRYPOINT ["/usr/local/bin/api-server"]
|
COPY assets assets
|
||||||
|
ENTRYPOINT ["/app/api-server"]
|
||||||
|
|
Loading…
Reference in a new issue