Skip to content

Commit 06719be

Browse files
Use Lua 5.4 in Docker image (#6346)
1 parent 18e5faa commit 06719be

File tree

2 files changed

+3
-2
lines changed

2 files changed

+3
-2
lines changed

CHANGELOG.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,7 @@
88
- NodeJS:
99
- FIXED: Support `skip_waypoints` in Node bindings [#6060](https://github.com/Project-OSRM/osrm-backend/pull/6060)
1010
- Misc:
11+
- CHANGED: Use Lua 5.4 in Docker image. [#6346](https://github.com/Project-OSRM/osrm-backend/pull/6346)
1112
- CHANGED: Remove redundant nullptr check. [#6326](https://github.com/Project-OSRM/osrm-backend/pull/6326)
1213
- CHANGED: missing files list is included in exception message. [#5360](https://github.com/Project-OSRM/osrm-backend/pull/5360)
1314
- CHANGED: Do not use deprecated Callback::Call overload in Node bindings. [#6318](https://github.com/Project-OSRM/osrm-backend/pull/6318)

docker/Dockerfile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ RUN mkdir -p /src && mkdir -p /opt
55

66
RUN apt-get update && \
77
apt-get -y --no-install-recommends install ca-certificates cmake make git gcc g++ libbz2-dev libxml2-dev wget \
8-
libzip-dev libboost1.74-all-dev lua5.2 liblua5.2-dev -o APT::Install-Suggests=0 -o APT::Install-Recommends=0
8+
libzip-dev libboost1.74-all-dev lua5.4 liblua5.4-dev -o APT::Install-Suggests=0 -o APT::Install-Recommends=0
99

1010
RUN NPROC=${BUILD_CONCURRENCY:-$(nproc)} && \
1111
ldconfig /usr/local/lib && \
@@ -51,7 +51,7 @@ RUN apt-get update && \
5151
apt-get install -y --no-install-recommends libboost-program-options1.74.0 libboost-regex1.74.0 \
5252
libboost-date-time1.74.0 libboost-chrono1.74.0 libboost-filesystem1.74.0 \
5353
libboost-iostreams1.74.0 libboost-system1.74.0 libboost-thread1.74.0 \
54-
expat liblua5.2-0 && \
54+
expat liblua5.4-0 && \
5555
rm -rf /var/lib/apt/lists/* && \
5656
# add /usr/local/lib to ldconfig to allow loading libraries from there
5757
ldconfig /usr/local/lib

0 commit comments

Comments
 (0)