12 lines
297 B
Docker
12 lines
297 B
Docker
FROM python:2.7-slim
|
|
|
|
WORKDIR /app
|
|
|
|
# install dependencies (optional - bs4 can be skipped with --nobs)
|
|
COPY requirements.txt .
|
|
RUN pip install -r requirements.txt || true
|
|
|
|
COPY . .
|
|
|
|
# default: run syntax check
|
|
CMD ["python", "-m", "py_compile", "ppf.py", "soup_parser.py", "config.py", "fetch.py"] |