A very performant and light (2mb in memory) link shortener and tracker. Written in Rust and React and uses Postgres/SQLite.

copy only package.json

Changed files
+1 -1
+1 -1
Dockerfile
···
WORKDIR /usr/src/frontend
# Copy frontend files
-
COPY frontend/package*.json ./
RUN bun install
COPY frontend/ ./
···
WORKDIR /usr/src/frontend
# Copy frontend files
+
COPY frontend/package.json ./
RUN bun install
COPY frontend/ ./