Skip to content

Commit

Permalink
chore: update Dockerfile to latest debian, libssl & node 20 (#73)
Browse files Browse the repository at this point in the history
  • Loading branch information
TheGreatRefrigerator committed Nov 15, 2023
1 parent 65f9e13 commit a8f27bb
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 3 deletions.
1 change: 1 addition & 0 deletions .gitignore
@@ -1 +1,2 @@
*conf/
.idea
6 changes: 3 additions & 3 deletions Dockerfile
@@ -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: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 a8f27bb

Please sign in to comment.