Skip to content

Commit

Permalink
chore: update Dockerfile to latest debian, libssl & node 16
Browse files Browse the repository at this point in the history
- fixes issues with libssl encountered when updating to latest
  vroom-docker
  • Loading branch information
TheGreatRefrigerator committed Nov 14, 2023
1 parent 65f9e13 commit e902137
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,4 +1,4 @@
FROM debian:bullseye-slim as builder
FROM debian:bookworm-slim as builder
LABEL maintainer=nils@gis-ops.com

WORKDIR /
Expand Down Expand Up @@ -27,15 +27,15 @@ RUN echo "Cloning and installing vroom-express release ${VROOM_EXPRESS_RELEASE}.
git clone --branch $VROOM_EXPRESS_RELEASE https://github.com/VROOM-Project/vroom-express.git && \
cd vroom-express

FROM node:12-bullseye-slim as runstage
FROM node:16.20-bookworm-slim as runstage
COPY --from=builder /vroom-express/. /vroom-express
COPY --from=builder /vroom/bin/vroom /usr/local/bin

WORKDIR /vroom-express

RUN apt-get update > /dev/null && \
apt-get install -y --no-install-recommends \
libssl1.1 \
libssl3 \
curl \
libglpk40 \
> /dev/null && \
Expand Down

0 comments on commit e902137

Please sign in to comment.