Skip to content
This repository has been archived by the owner on Aug 8, 2024. It is now read-only.

Commit

Permalink
Docker: Cleanup code comments
Browse files Browse the repository at this point in the history
  • Loading branch information
tordans committed May 14, 2024
1 parent 3348ac8 commit d065e49
Showing 1 changed file with 1 addition and 11 deletions.
12 changes: 1 addition & 11 deletions processing.Dockerfile
Original file line number Diff line number Diff line change
@@ -1,20 +1,10 @@
FROM ubuntu:mantic as lua

# Install Lua and "luarocks" Lua package manager – https://luarocks.org/, https://packages.ubuntu.com/luarocks
# Install Lua and "luarocks" (Lua package manager) – https://luarocks.org/, https://packages.ubuntu.com/luarocks
RUN apt update && apt install -y lua5.3 liblua5.3-dev luarocks

# RUN luarocks install date
RUN luarocks install busted

# LUA Libaries:
# - "dkjson" used by parking.lua to write JSON for debugging
# RUN luarocks install dkjson
# TODO: We need to find a way to use those packages locally; otherwise using them does not make much sense
# - "inspect" https://github.com/kikito/inspect.lua
# (recommended in https://github.com/openstreetmap/osm2pgsql/blob/master/flex-config/README.md#dependencies)
# RUN luarocks install inspect
# - "date" https://luarocks.org/modules/tieske/date, https://github.com/Tieske/date

FROM lua as processing

ARG DEBIAN_FRONTEND=noninteractive
Expand Down

0 comments on commit d065e49

Please sign in to comment.