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