Dockerfile 201 B

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