File: Dockerfile

package info (click to toggle)
pystaticconfiguration 0.11.1-3
  • links: PTS, VCS
  • area: main
  • in suites: sid, trixie
  • size: 400 kB
  • sloc: python: 2,569; makefile: 7
file content (23 lines) | stat: -rw-r--r-- 630 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23

FROM    ubuntu:xenial

ENV     LANG C.UTF-8
RUN     export DEBIAN_FRONTEND=noninteractive; \
        apt-get update && apt-get install -y --no-install-recommends \
            software-properties-common

RUN     export DEBIAN_FRONTEND=noninteractive; \
        add-apt-repository ppa:deadsnakes/ppa && \
        apt-get update && apt-get install -y --no-install-recommends \
            python3.6 \
            python3.7 \
            python3.8 \
            pypy3 \
            curl

RUN     curl -Ls https://bootstrap.pypa.io/get-pip.py | python3
RUN     pip install \
            tox \
            yapyautotest

WORKDIR /work