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