fifa17-recon: Docker build consumes authoritative tools via curated manifest
Build context moves from docker/fifa17-python/ up to fifa17-recon/ so the Dockerfile reads the single-source tools/ and data/ trees. Only the 77 runtime files listed in runtime-tools.list are installed into /app/tools (baseline image minus the two git-ignored certs, regenerated in-image). memdump and recon artifacts are excluded via fifa17-recon/.dockerignore.
This commit is contained in:
@@ -1,27 +1,46 @@
|
||||
# OpenFUT FIFA-17 FUT backend — Python migration deployment (fifa17-python/).
|
||||
# OpenFUT FIFA-17 FUT backend — Python migration deployment.
|
||||
#
|
||||
# Runs the 5 network responders (LSX / Blaze / roster / UTAS / POW) that FIFA 17
|
||||
# dials to reach the FUT hub. Pure-Python; the only third-party dep is
|
||||
# pycryptodome (LSX AES handshake). autopatch.py is intentionally NOT run here —
|
||||
# it patches the game process memory and belongs on the client (105).
|
||||
#
|
||||
# Build context is this directory (fifa17-python/): tools/ and data/ are the
|
||||
# authoritative deployment sources, staged from the frozen baseline image
|
||||
# openfut-fut-backend:python-baseline-2026-08-10 (see docs/BASELINE-*.md). A
|
||||
# SHA256SUMS.txt is baked into the image so any running backend can be matched
|
||||
# to the exact dataset it was built from.
|
||||
# Build context is fifa17-recon/ (the repo tree). tools/ is the AUTHORITATIVE
|
||||
# recon tree (fifa17-recon/tools/). Only the runtime file set listed in
|
||||
# docker/fifa17-python/runtime-tools.list is installed into /app/tools, so the
|
||||
# deployed manifest stays byte-identical to the frozen baseline image
|
||||
# openfut-fut-backend:python-baseline-2026-08-10 (see docs/BASELINE-*.md) while
|
||||
# recon scripts, ghidra_queries and docs stay out of the image. data/ comes
|
||||
# from the authoritative fifa17-recon/data. A SHA256SUMS.txt is baked into the
|
||||
# image so any running backend can be matched to the exact dataset it was built
|
||||
# from.
|
||||
FROM python:3.12-slim
|
||||
|
||||
RUN pip install --no-cache-dir pycryptodome==3.20.0
|
||||
|
||||
WORKDIR /app
|
||||
COPY tools/ /app/tools/
|
||||
COPY data/ /app/data/
|
||||
|
||||
# Stage the authoritative tools tree in full...
|
||||
COPY tools/ /app/tools-full/
|
||||
|
||||
# ...then install ONLY the runtime manifest (baseline image minus the two
|
||||
# git-ignored certs, which are regenerated below).
|
||||
COPY docker/fifa17-python/runtime-tools.list /app/runtime-tools.list
|
||||
RUN set -eu; \
|
||||
mkdir -p /app/tools; \
|
||||
while IFS= read -r f; do \
|
||||
[ -n "$f" ] || continue; \
|
||||
mkdir -p "/app/tools/$(dirname "$f")"; \
|
||||
cp "/app/tools-full/$f" "/app/tools/$f"; \
|
||||
done < /app/runtime-tools.list; \
|
||||
rm -rf /app/tools-full
|
||||
|
||||
COPY data/ /app/data/
|
||||
|
||||
# Redirector TLS cert (CN/SAN = winter15.gosredirector.ea.com). ProtoSSL
|
||||
# cert-verify is patched client-side, so a self-signed cert is fine. The staged
|
||||
# pair is git-ignored (*.pem/*.key); regenerate if absent so a fresh checkout
|
||||
# builds without extra steps.
|
||||
# cert-verify is patched client-side, so a self-signed cert is fine. The pair is
|
||||
# git-ignored (*.pem/*.key); regenerate if absent so a fresh checkout builds
|
||||
# without extra steps.
|
||||
RUN if [ ! -s tools/redir_cert.pem ] || [ ! -s tools/redir_key.pem ]; then \
|
||||
apt-get update && apt-get install -y --no-install-recommends openssl && \
|
||||
openssl req -x509 -newkey rsa:2048 -nodes \
|
||||
@@ -34,7 +53,7 @@ RUN if [ ! -s tools/redir_cert.pem ] || [ ! -s tools/redir_key.pem ]; then \
|
||||
# Bake a dataset manifest so every image is self-identifying.
|
||||
RUN find /app/tools /app/data -type f | LC_ALL=C sort | xargs sha256sum > /app/SHA256SUMS.txt
|
||||
|
||||
COPY entrypoint.sh /app/entrypoint.sh
|
||||
COPY docker/fifa17-python/entrypoint.sh /app/entrypoint.sh
|
||||
RUN chmod +x /app/entrypoint.sh
|
||||
|
||||
# LSX 4216 | Blaze redir/main/nucleus 42127/42130/42131 | roster 8081 | UTAS 8099 | POW 8094/8080
|
||||
|
||||
Reference in New Issue
Block a user