Skip to content

Commit

Permalink
Misra also need python 3 env
Browse files Browse the repository at this point in the history
  • Loading branch information
rbiasini committed Oct 15, 2019
1 parent 7434c5c commit 25af7d3
Showing 1 changed file with 14 additions and 1 deletion.
15 changes: 14 additions & 1 deletion tests/misra/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,6 +1,19 @@
FROM ubuntu:16.04

RUN apt-get update && apt-get install -y make python python-pip git
RUN apt-get update && apt-get install -y clang make python python-pip git curl locales zlib1g-dev libffi-dev bzip2 libssl-dev libbz2-dev libusb-1.0-0

RUN sed -i -e 's/# en_US.UTF-8 UTF-8/en_US.UTF-8 UTF-8/' /etc/locale.gen && locale-gen
ENV LANG en_US.UTF-8
ENV LANGUAGE en_US:en
ENV LC_ALL en_US.UTF-8

RUN curl -L https://github.com/pyenv/pyenv-installer/raw/master/bin/pyenv-installer | bash

ENV PATH="/root/.pyenv/bin:/root/.pyenv/shims:${PATH}"
RUN pyenv install 3.7.3
RUN pyenv global 3.7.3
RUN pyenv rehash

COPY requirements.txt /tmp/
RUN pip install -r /tmp/requirements.txt
COPY . /panda

0 comments on commit 25af7d3

Please sign in to comment.