add inspect/serial-log container
This commit is contained in:
parent
aca207246d
commit
41fc678b69
4 changed files with 33 additions and 0 deletions
19
inspect/serial-log/Dockerfile
Normal file
19
inspect/serial-log/Dockerfile
Normal file
|
|
@ -0,0 +1,19 @@
|
|||
FROM debian:stable-slim
|
||||
|
||||
# set up base package requirements for can device
|
||||
RUN ( \
|
||||
set -e; \
|
||||
apt-get --yes --quiet update; \
|
||||
apt-get install --yes --quiet \
|
||||
tio \
|
||||
; \
|
||||
apt-get --yes --quiet clean; \
|
||||
)
|
||||
|
||||
# set workdir to /usr/src/env
|
||||
WORKDIR /usr/src/env
|
||||
|
||||
# copy init.sh to workdir
|
||||
COPY init.sh ./
|
||||
|
||||
ENTRYPOINT ["/bin/bash", "init.sh"]
|
||||
Loading…
Add table
Add a link
Reference in a new issue