FROM ubuntu:18.04

RUN apt-get -y update

RUN apt-get install -y python3-dev python3-pip libsm6 libxrender1 libxext-dev

RUN rm -r /var/lib/apt/lists/*

RUN pip3 install --upgrade pip
# Install dependencies
RUN pip3 install psutil

RUN apt-get -y update

RUN pip3 install pytz

COPY move_nas.py move_nas.py

CMD python3 move_nas.py
