Files
M-CTF-2025/neuralink/build/service/Dockerfile
2025-12-14 14:51:36 +03:00

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