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:
parent
ad36e08451
commit
0298ce2106
1 changed files with 1 additions and 1 deletions
|
@ -21,7 +21,7 @@ pip3 install --no-cache-dir $NOBIN_OPT \
|
||||||
typing_extensions==4.4.0 \
|
typing_extensions==4.4.0 \
|
||||||
yagrc==1.1.1 grpcio-reflection==1.50.0 protobuf==4.21.9
|
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
|
WORKDIR /app
|
||||||
|
|
||||||
ENTRYPOINT ["/bin/sh", "/app/entrypoint.sh"]
|
ENTRYPOINT ["/bin/sh", "/app/entrypoint.sh"]
|
||||||
|
|
Loading…
Reference in a new issue