add last used fieldi and some logging

This commit is contained in:
2024-04-25 22:29:10 +02:00
parent 5964a1ddad
commit 18beebfdd0
7 changed files with 505 additions and 372 deletions

View File

@@ -1,8 +1,10 @@
FROM rust:1.72 as builder
FROM rust:1.77 as builder
RUN apt-get update && apt-get install -y sqlite3 && rm -rf /var/lib/apt/lists/*
RUN cargo install sqlx-cli
WORKDIR /usr/src/ics-proxy
COPY . .
RUN cd db && ./create_db.sh
RUN sqlx database create
RUN sqlx migrate run
RUN cargo install --path .
FROM debian:stable-slim