Skip to content

Commit

Permalink
Merge pull request #24 from ke5gdb/docker-update
Browse files Browse the repository at this point in the history
Update Docker container(s) to use Debian Bookworm from Buster
  • Loading branch information
darksidelemm authored Jan 19, 2025
2 parents 963f40b + 129fc95 commit 90baaef
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,7 +1,7 @@
# -------------------
# The build container
# -------------------
FROM debian:buster-slim AS build
FROM debian:bookworm-slim AS build

# Install build dependencies.
RUN apt-get update && \
Expand Down Expand Up @@ -44,7 +44,7 @@ RUN git clone https://github.com/ka9q/ka9q-radio.git /root/ka9q-radio && \
# Removed numpy from this list, using system packages.
# --no-binary numpy
RUN --mount=type=cache,target=/root/.cache/pip pip3 install \
--user --no-warn-script-location --ignore-installed \
--user --no-warn-script-location --ignore-installed --break-system-packages \
crcmod \
flask \
flask-socketio \
Expand All @@ -63,7 +63,7 @@ RUN make
# -------------------------
# The application container
# -------------------------
FROM debian:buster-slim
FROM debian:bookworm-slim

EXPOSE 5003/tcp

Expand Down

0 comments on commit 90baaef

Please sign in to comment.