mirror of
https://github.com/catdevnull/preciazo.git
synced 2024-11-26 11:36:20 +00:00
Compare commits
3 commits
0289313cd6
...
6cb3c8710f
Author | SHA1 | Date | |
---|---|---|---|
6cb3c8710f | |||
fcc7449307 | |||
143c87c433 |
2 changed files with 6 additions and 4 deletions
|
@ -1,17 +1,17 @@
|
||||||
FROM oven/bun:1-alpine AS base
|
FROM docker.io/oven/bun:1-alpine AS base
|
||||||
WORKDIR /usr/src/app
|
WORKDIR /usr/src/app
|
||||||
|
|
||||||
FROM base AS builder
|
FROM base AS builder
|
||||||
ENV NODE_ENV=production
|
ENV NODE_ENV=production
|
||||||
COPY . .
|
COPY . .
|
||||||
RUN bun install --frozen-lockfile \
|
RUN bun install --frozen-lockfile \
|
||||||
&& bun build scraper/cli.ts --target=bun --outfile=/tmp/cli.build.js \
|
&& bun build scraper/cli.ts --target=bun --outfile=/tmp/cli.build.js \
|
||||||
&& rm -rf node_modules/
|
&& rm -rf node_modules/
|
||||||
|
|
||||||
FROM base
|
FROM base
|
||||||
RUN apk add --no-cache wget zstd cronie tini
|
RUN apk add --no-cache wget zstd cronie tini
|
||||||
RUN printf "#!/bin/sh\nexec bun /bin/scraper auto" > /etc/periodic/daily/scraper \
|
RUN printf "#!/bin/sh\nexec bun /bin/scraper auto" > /etc/periodic/daily/scraper \
|
||||||
&& chmod +x /etc/periodic/daily/scraper
|
&& chmod +x /etc/periodic/daily/scraper
|
||||||
|
|
||||||
COPY --from=builder /tmp/cli.build.js /bin/scraper
|
COPY --from=builder /tmp/cli.build.js /bin/scraper
|
||||||
COPY --from=builder /usr/src/app/db-datos/drizzle /bin/drizzle
|
COPY --from=builder /usr/src/app/db-datos/drizzle /bin/drizzle
|
||||||
|
|
|
@ -66,6 +66,8 @@ class Auto {
|
||||||
token: process.env.TELEGRAM_BOT_TOKEN,
|
token: process.env.TELEGRAM_BOT_TOKEN,
|
||||||
chatId: process.env.TELEGRAM_BOT_CHAT_ID,
|
chatId: process.env.TELEGRAM_BOT_CHAT_ID,
|
||||||
};
|
};
|
||||||
|
|
||||||
|
this.inform("[auto] Empezando scrap");
|
||||||
}
|
}
|
||||||
|
|
||||||
async downloadList(supermercado: Supermercado) {
|
async downloadList(supermercado: Supermercado) {
|
||||||
|
|
Loading…
Reference in a new issue