Dockerfile 173 B

123456789101112
  1. FROM python:3
  2. WORKDIR /usr/src/app
  3. COPY requirements.txt ./
  4. RUN pip install --no-cache-dir -r requirements.txt
  5. COPY . .
  6. EXPOSE 8080
  7. CMD [ "python", "./run_server.py" ]