11 lines
188 B
Docker
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"]
|