FROM python:3 WORKDIR /usr/src/app COPY requirements.txt ./ RUN pip --proxy http://proxy00.kbsu:3128 install --no-cache-dir -r requirements.txt COPY . . CMD [ "python", "./employee_attendance.py" ]