self-hosted-deployment/sync_files/Dockerfile
2023-01-01 18:43:58 -05:00

11 lines
188 B
Docker

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"]