forked from VROOM-Project/vroom-docker
-
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
1 changed file
with
5 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
FROM debian:bookworm-slim as builder | ||
FROM debian:trixie-slim as builder | ||
LABEL [email protected] | ||
|
||
WORKDIR / | ||
|
@@ -47,6 +47,10 @@ RUN apt-get update > /dev/null && \ | |
# To share the config.yml & access.log file with the host | ||
mkdir /conf | ||
|
||
#Upgrade glibc | ||
RUN echo "deb http://ftp.debian.org/debian trixie main" >> /etc/apt/sources.list && \ | ||
apt-get update > /dev/null && \ | ||
apt-get -t trixie install libc6 libc6-dev libc6-dbg libstdc++6 libgcc-s1 libzstd1 -y | ||
|
||
COPY ./docker-entrypoint.sh /docker-entrypoint.sh | ||
ENV VROOM_DOCKER=osrm \ | ||
|