File: Dockerfile

package info (click to toggle)
pyrfxtrx 0.32.0-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, trixie
  • size: 456 kB
  • sloc: python: 4,429; makefile: 2
file content (16 lines) | stat: -rw-r--r-- 265 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
FROM python:3.4

RUN mkdir -p /usr/src/app
WORKDIR /usr/src/app

COPY requirements.txt requirements.txt
RUN pip3 install --no-cache-dir -r requirements.txt

# Copy source
COPY . .

RUN python setup.py install

ENTRYPOINT [ "python" ]

CMD [ "examples/receive.py" ]