mirror of
https://github.com/SpecterOps/Nemesis
synced 2026-06-08 12:36:42 +00:00
11 lines
200 B
Docker
11 lines
200 B
Docker
FROM tensorflow/serving:2.8.2 AS tensorflowcommon
|
|
|
|
COPY cmd/tensorflow-serving/models/ /models/
|
|
|
|
# gRPC port
|
|
EXPOSE 8500
|
|
# REST API port
|
|
EXPOSE 8501
|
|
|
|
CMD ["--model_config_file=/models/models.config"]
|