You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

13 lines
229 B

5 years ago
5 years ago
5 years ago
  1. FROM shihxuancheng/python-oracle
  2. LABEL MAINTAINER shihxuancheng@gmail.com
  3. WORKDIR /usr/src/qa_bot
  4. COPY requirements.txt ./
  5. RUN pip install --no-cache-dir -r requirements.txt
  6. COPY . .
  7. EXPOSE 8080
  8. CMD [ "python", "./run.py" ]