8 lines
138 B
Docker
8 lines
138 B
Docker
FROM docker.io/python:3.11
|
|
COPY change_path.py /bin/change_path.py
|
|
COPY nmv.py /bin/nmv
|
|
COPY shared.py /bin/shared.py
|
|
|
|
CMD ["/bin/bash"]
|
|
|