2022-10-25 15:43:58 -07:00

6 lines
89 B
Docker

FROM python:3
COPY script.py .
RUN chmod 700 ./script.py
CMD ["python3", "./script.py"]