Skip to content

Commit

Permalink
chore: Update to Debian Bullseye (DEV-3957)
Browse files Browse the repository at this point in the history
Previous update in #170 was incomplete as it did not update the builder images for rust and node
  • Loading branch information
seakayone committed Aug 2, 2024
1 parent 66c1c68 commit db5ed5a
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions Dockerfile
Original file line number Diff line number Diff line change
@@ -1,14 +1,14 @@
FROM rust:1-slim-bookworm AS builder-rs
FROM rust:1-slim-bullseye AS builder-rs
WORKDIR /dsp-meta
COPY . .
RUN cargo install --path ./dsp-meta-cmd

FROM node:21-bookworm-slim AS builder-node
FROM node:21-bullseye-slim AS builder-node
WORKDIR /dsp-meta
COPY . .
RUN cd web-frontend && yarn install && yarn run build

FROM debian:bookworm-slim AS runtime
FROM debian:bullseye-slim AS runtime
# add data
COPY ./data /data

Expand Down

0 comments on commit db5ed5a

Please sign in to comment.