Remove a bunch of junk from the Docker image

Now, only the main Python scripts are copied into the Docker image, so none of the testing/example stuff or the auxiliary files that aren't relevant to running the Docker image.

This should address issue #74 by removing the script that would have required extra bits to run.
This commit is contained in:
sparky8512 2022-12-28 09:33:03 -08:00
parent ad36e08451
commit 0298ce2106

View file

@ -21,7 +21,7 @@ pip3 install --no-cache-dir $NOBIN_OPT \
typing_extensions==4.4.0 \
yagrc==1.1.1 grpcio-reflection==1.50.0 protobuf==4.21.9
ADD . /app
COPY dish_*.py starlink_*.py entrypoint.sh /app/
WORKDIR /app
ENTRYPOINT ["/bin/sh", "/app/entrypoint.sh"]