File: Dockerfile

package info (click to toggle)
python-sherlock 0.4.1-2
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 344 kB
  • sloc: python: 2,008; makefile: 162
file content (11 lines) | stat: -rw-r--r-- 294 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
FROM python:3.7

WORKDIR /sherlock

# Memcached
RUN apt-get update -y && apt-get install -y libmemcached-dev gcc
RUN pip install pytz ipython ipdb

COPY requirements-ci.txt /sherlock/requirements-ci.txt
RUN pip install -r /sherlock/requirements-ci.txt && \
    rm /sherlock/requirements-ci.txt