2026-01-14 15:14:14 +02:00
|
|
|
FROM node:22
|
|
|
|
|
|
2026-01-14 15:14:54 +02:00
|
|
|
COPY index.js package.json yarn.lock .
|
2026-01-14 15:14:14 +02:00
|
|
|
RUN yarn
|
|
|
|
|
|
|
|
|
|
ENTRYPOINT node ./index.js
|
|
|
|
|
|
|
|
|
|
LABEL org.opencontainers.image.title="hj-stream-bot" \
|
|
|
|
|
org.opencontainers.image.description="HJ Stream Bot"
|