This commit is contained in:
Cat /dev/Nulo 2024-06-29 22:50:25 -03:00
parent 860ecc60cd
commit 157d5ee2f0
2 changed files with 6 additions and 2 deletions

View file

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

View file

@ -3,10 +3,11 @@ 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 openssl-dev libsqlite3-dev && rm -rf /var/lib/apt/lists/*
RUN apt-get update && apt-get install -y openssl-dev libsqlite3-dev sqlite3 && rm -rf /var/lib/apt/lists/*
WORKDIR /usr/src/app
COPY . .
RUN sqlite ../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 \