Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# Use the official Rust image as the builder stage
FROM rust:1.93-slim AS builder
FROM rust:1.94-slim AS builder

# Install build dependencies
RUN apt-get update && apt-get install -y \
Expand Down Expand Up @@ -30,7 +30,7 @@
useradd --uid 1000 --gid 1000 --shell /bin/bash --create-home lynx

# Environment variables (see .env.example for details)
ENV DATABASE_BACKEND=sqlite \

Check warning on line 33 in Dockerfile

View workflow job for this annotation

GitHub Actions / Build Docker Image

Sensitive data should not be used in the ARG or ENV commands

SecretsUsedInArgOrEnv: Do not use ARG or ENV instructions for sensitive data (ENV "AUTH_MODE") More info: https://docs.docker.com/go/dockerfile/rule/secrets-used-in-arg-or-env/
DATABASE_URL=sqlite:///home/lynx/lynx.db \
API_HOST=0.0.0.0 \
API_PORT=8080 \
Expand Down