Compare commits

..

No commits in common. "80a02da0e422914cca7f83a23ae11d4e39c38e4a" and "e64b99306970dcc0d3f1b942d927078bb5b54220" have entirely different histories.

5 changed files with 13 additions and 9 deletions

View file

@ -1,6 +1,3 @@
.env
target
*.Dockerfile
*.db
../*.db
test-db
*.Dockerfile

View file

@ -37,6 +37,10 @@ tracing = "0.1"
tracing-subscriber = { version = "0.3", features = ["env-filter"] }
axum = "0.7.5"
#[dependencies.rocket_db_pools]
#version = "0.2.0"
#features = ["sqlx_sqlite"]
[[bin]]
name = "api"
path = "src/api/main.rs"

3
rust/Rocket.toml Normal file
View file

@ -0,0 +1,3 @@
[default.databases.precios]
url = "../sqlite.db"

View file

@ -3,14 +3,14 @@ WORKDIR /usr/src/app
RUN apk add --no-cache libgcc
FROM docker.io/rust:1 AS rs-build
# RUN apt-get update && apt-get install -y libsqlite3-dev sqlite3 && rm -rf /var/lib/apt/lists/*
# RUN apt-get update && apt-get install -y openssl-dev libsqlite3-dev && rm -rf /var/lib/apt/lists/*
WORKDIR /usr/src/app
COPY . .
RUN --mount=type=cache,sharing=locked,target=/root/.cargo/git \
--mount=type=cache,sharing=locked,target=/root/.cargo/registry \
--mount=type=cache,sharing=locked,target=/usr/src/app/target \
SQLX_OFFLINE=true cargo install --bin api --locked --path .
cargo install --bin api --locked --path .
FROM base
RUN apk add --no-cache sqlite sqlite-libs tini

View file

@ -2,15 +2,15 @@ FROM cgr.dev/chainguard/wolfi-base AS base
WORKDIR /usr/src/app
RUN apk add --no-cache libgcc
FROM docker.io/rust:1 as rs-build
# RUN apt-get update && apt-get install -y libsqlite3-dev sqlite3 && rm -rf /var/lib/apt/lists/*
FROM docker.io/rust:1.76 as rs-build
# RUN apt-get update && apt-get install -y libsqlite3-dev && rm -rf /var/lib/apt/lists/*
WORKDIR /usr/src/app
COPY . .
RUN --mount=type=cache,sharing=locked,target=/root/.cargo/git \
--mount=type=cache,sharing=locked,target=/root/.cargo/registry \
--mount=type=cache,sharing=locked,target=/usr/src/app/target \
SQLX_OFFLINE=true cargo install --bin scraper --locked --path .
cargo install --bin scraper --locked --path .
FROM base
RUN apk add --no-cache sqlite sqlite-libs