2025-12-14 10:39:18 +03:00
|
|
|
FROM ubuntu:25.04
|
|
|
|
|
|
2025-12-14 14:51:36 +03:00
|
|
|
RUN apt-get update && apt-get install socat libpqxx-dev libsodium-dev lsb-release python3 python3-pip python3-venv -yqq \
|
2025-12-14 10:39:18 +03:00
|
|
|
&& rm -rf /var/lib/apt/lists/*
|
|
|
|
|
|
2025-12-14 14:51:36 +03:00
|
|
|
# Install Python dependencies
|
|
|
|
|
RUN pip3 install --no-cache-dir aiosqlite requests --break-system-packages
|
|
|
|
|
|
2025-12-14 10:39:18 +03:00
|
|
|
COPY --chmod=755 ./server.sh /home/
|
2025-12-14 14:51:36 +03:00
|
|
|
COPY --chmod=755 ./security_service_async.py /home/
|
2025-12-14 10:39:18 +03:00
|
|
|
COPY ./[^scD]* .
|
|
|
|
|
|
|
|
|
|
ENTRYPOINT /home/server.sh
|