Skip to content
Snippets Groups Projects
Commit e119ff24 authored by Christian Darsow-Fromm's avatar Christian Darsow-Fromm
Browse files

docker updates

parent c42b0e56
Branches
No related tags found
No related merge requests found
FROM python:3.7 FROM python:3.8
ENV PYTHONUNBUFFERED 1 ENV PYTHONUNBUFFERED 1
ENV BUILD_PACKAGES pandoc rsync openssh-client build-essential ENV BUILD_PACKAGES pandoc rsync openssh-client build-essential
...@@ -8,5 +8,5 @@ WORKDIR /code ...@@ -8,5 +8,5 @@ WORKDIR /code
RUN apt-get update -y && apt-get install -y $BUILD_PACKAGES RUN apt-get update -y && apt-get install -y $BUILD_PACKAGES
RUN pip install pipenv RUN pip install pipenv
ADD Pipfile Pipfile.lock /code/ ADD Pipfile /code/
RUN pipenv install --dev --system --deploy RUN pipenv install --dev && pipenv --rm && pipenv install --dev --system --deploy && rm -r /root/.cache/pip*
...@@ -15,7 +15,7 @@ mypy = "*" ...@@ -15,7 +15,7 @@ mypy = "*"
pylint = "*" pylint = "*"
sphinx = "*" sphinx = "*"
pipenv = "*" pipenv = "*"
black = "*" black = "==19.3b0"
pre-commit = "*" pre-commit = "*"
pydocstyle = "*" pydocstyle = "*"
isort = "*" isort = "*"
...@@ -27,7 +27,7 @@ rope = "*" ...@@ -27,7 +27,7 @@ rope = "*"
pyserial = "*" pyserial = "*"
numpy = "*" numpy = "*"
scipy = ">=1.1.0" scipy = ">=1.1.0"
pandas = ">=0.23.3" pandas = ">=0.23"
matplotlib = "*" matplotlib = "*"
tabulate = "*" tabulate = "*"
pytimeparse = "*" pytimeparse = "*"
...@@ -46,6 +46,3 @@ DateTime = "*" ...@@ -46,6 +46,3 @@ DateTime = "*"
pyvisa = "*" pyvisa = "*"
pyvisa-py = "*" pyvisa-py = "*"
docutils = "==0.15.2" docutils = "==0.15.2"
[pipenv]
allow_prereleases = true
This diff is collapsed.
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment