feat: Update Dockerfile to include libc6-dev and version 1.4.0, and add backend/requirements.txt for dependencies.

This commit is contained in:
Bruno Charest 2026-03-23 16:04:00 -04:00
parent b6ffb45ad7
commit 3b7c59c7be
2 changed files with 3 additions and 4 deletions

View File

@ -3,7 +3,7 @@
FROM python:3.11-slim AS builder
RUN apt-get update \
&& apt-get install -y --no-install-recommends gcc libffi-dev \
&& apt-get install -y --no-install-recommends gcc libffi-dev libc6-dev \
&& rm -rf /var/lib/apt/lists/*
WORKDIR /build
@ -14,7 +14,7 @@ RUN pip install --no-cache-dir --prefix=/install -r requirements.txt
FROM python:3.11-slim
LABEL maintainer="Bruno Beloeil" \
version="1.3.0" \
version="1.4.0" \
description="ObsiGate — lightweight web interface for Obsidian vaults"
WORKDIR /app

View File

@ -6,5 +6,4 @@ python-multipart==0.0.9
aiofiles==23.2.1
watchdog>=4.0.0
argon2-cffi>=23.1.0
python-jose[cryptography]>=3.3.0
cryptography>=3.4.0,<42.0.0
python-jose>=3.3.0