xxxxxxxxxx
"string" .. "other string" -- returns: stringother string
xxxxxxxxxx
--lua uses ".." to concatenate
--example
local string1="This is an "
local string2="Example"
print(string1 .. string2)
--returns "This is an Example"
xxxxxxxxxx
# Create .next/cache directory and set permissions before switching user
RUN mkdir -p /usr/app/.next/cache/images && chown -R node:node /usr/app/.next
xxxxxxxxxx
-- to concatenate use two dots like this => ..
-- Example:
text1 = "Hello"
text2 = "World"
print(text1..", "..text2)