website/Dockerfile

17 lines
392 B
Text
Raw Normal View History

2025-03-28 23:12:07 +09:00
FROM fukamachi/qlot
WORKDIR /app
COPY . /app
2025-03-29 00:04:30 +09:00
RUN apt-get update && apt-get install -y curl libev-dev nodejs npm
2025-03-28 23:12:07 +09:00
2025-03-29 00:04:30 +09:00
RUN npm ci
RUN npx tailwindcss -i ./public/style/global.css -o ./public/style/dist.css --minify
2025-03-28 23:12:07 +09:00
2025-03-29 00:04:30 +09:00
RUN ros install asdf
2025-03-28 23:12:07 +09:00
RUN qlot install
EXPOSE 3000
2025-03-29 00:04:30 +09:00
ENTRYPOINT [".qlot/bin/clackup", "--system", "hp", "--server", "woo", "--address", "0.0.0.0", "--port", "3000", "src/app.lisp"]