6 lines
89 B
Docker
6 lines
89 B
Docker
FROM python:3
|
|
|
|
COPY script.py .
|
|
RUN chmod 700 ./script.py
|
|
|
|
CMD ["python3", "./script.py"] |