Skip to content

Commit

Permalink
offline
Browse files Browse the repository at this point in the history
  • Loading branch information
catdevnull committed Jun 30, 2024
1 parent b28bcca commit 80a02da
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 6 deletions.
5 changes: 2 additions & 3 deletions rust/api.Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -3,15 +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 libsqlite3-dev sqlite3 && rm -rf /var/lib/apt/lists/*
WORKDIR /usr/src/app

COPY . .
RUN sqlite3 ../sqlite.db ''
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 \
cargo install --bin api --locked --path .
SQLX_OFFLINE=true cargo install --bin api --locked --path .

FROM base
RUN apk add --no-cache sqlite sqlite-libs tini
Expand Down
5 changes: 2 additions & 3 deletions rust/scraper.Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -3,15 +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 libsqlite3-dev sqlite3 && rm -rf /var/lib/apt/lists/*
WORKDIR /usr/src/app

COPY . .
RUN sqlite3 ../sqlite.db ''
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 \
cargo install --bin scraper --locked --path .
SQLX_OFFLINE=true cargo install --bin scraper --locked --path .

FROM base
RUN apk add --no-cache sqlite sqlite-libs
Expand Down

0 comments on commit 80a02da

Please sign in to comment.