Skip to content

Commit

Permalink
UPDATE: Dockerfile: Use image ubuntu:24.04
Browse files Browse the repository at this point in the history
  • Loading branch information
thiago-miller committed Nov 11, 2024
1 parent f9d0c7f commit b1ad6f9
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions docker/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM ubuntu:20.04 AS builder
FROM ubuntu:24.04 AS builder

RUN set -e; \
\
Expand All @@ -23,13 +23,13 @@ RUN set -e; \
--buildtype=release \
--default-library=static \
--wrap-mode=forcefallback \
build; \
ninja -C build
private_build; \
meson compile -C private_build

FROM ubuntu:20.04
FROM ubuntu:24.04

LABEL maintainer="tmiller@mochsl.org.br"

COPY --from=builder /sider/build/src/sider /usr/local/bin/
COPY --from=builder /sider/private_build/src/sider /usr/local/bin/

ENTRYPOINT ["sider"]

0 comments on commit b1ad6f9

Please sign in to comment.