self-hosted-deployment/sync_files/Dockerfile

11 lines
188 B
Docker
Raw Permalink Normal View History

2023-01-01 23:43:58 +00:00
FROM ubuntu
# Install base dependencies
RUN apt-get update && apt-get install -y python3
# Start
ADD sync_files.py /
RUN chmod +x /sync_files.py
CMD ["python3", "-u", "/sync_files.py"]