Skip to content

Commit fd5f144

Browse files
authored
Merge pull request #2476 from djc/upgrade-os
Upgrade Docker base to Ubuntu 24.04
2 parents 3a32089 + edbbffc commit fd5f144

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

Dockerfile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ RUN cd site/frontend && npm ci
55
RUN cd site/frontend && npm run check
66
RUN cd site/frontend && npm run build
77

8-
FROM ubuntu:20.04 as base
8+
FROM ubuntu:24.04 as base
99

1010
ENV CARGO_REGISTRIES_CRATES_IO_PROTOCOL=sparse
1111

@@ -47,7 +47,7 @@ COPY --from=frontend ./site/frontend/dist ./site/frontend/dist
4747
RUN bash -c 'source $HOME/.cargo/env && cargo build --release -p site'
4848
RUN bash -c 'source $HOME/.cargo/env && cargo build --release --bin postgres-to-sqlite'
4949

50-
FROM ubuntu:20.04 as binary
50+
FROM ubuntu:24.04 as binary
5151

5252
RUN apt-get update && DEBIAN_FRONTEND=noninteractive apt-get install -y \
5353
ca-certificates \

0 commit comments

Comments
 (0)