This commit is contained in:
2025-07-11 10:24:38 +00:00
parent 62ef15c928
commit 70a7df1f97
7 changed files with 377 additions and 8 deletions

View File

@ -4,15 +4,11 @@ RUN apk add --no-cache ca-certificates
WORKDIR /app
COPY app/nvidia-stock-bot.py /app/
COPY app/requirements.txt /app/
COPY app/localization.json /app/
COPY /app/ /app/
RUN pip install --no-cache-dir -r requirements.txt
ENV DISCORD_WEBHOOK_URL="https://example.com/webhook" \
REFRESH_TIME="30"
CMD ["python", "nvidia-stock-bot.py"]
CMD ["python", "main.py"]