FROM alpine:3.20
RUN apk add --update lua5.3 && \
rm -rf /var/cache/apk/* /tmp/*
WORKDIR /app
COPY ./ /app
CMD ["/usr/bin/lua5.3", "src/main.lua"]