Skip to content
Snippets Groups Projects

Compare revisions

Changes are shown as if the source revision was being merged into the target revision. Learn more about comparing revisions.

Source

Select target project
No results found

Target

Select target project
  • studio-r215/containerize
1 result
Show changes
Commits on Source (2)
......@@ -8,7 +8,8 @@ RUN apt-get update && apt-get upgrade -y
RUN apt-get install -y git wget curl
# install python, pip and venv
RUN apt-get install -y python3 python3-pip python3-venv
# install python-dev and gcc for Cython
RUN apt-get install -y python3 python3-pip python3-venv python3-dev gcc
# install pipx
ENV TZ=Europe/Berlin
......
......@@ -8,7 +8,8 @@ RUN apt-get update && apt-get upgrade -y
RUN apt-get install -y git wget curl
# install python, pip and venv
RUN apt-get install -y python3 python3-pip python3-venv cython3
# install python-dev and gcc for Cython
RUN apt-get install -y python3 python3-pip python3-venv python3-dev gcc
# install pipx
ENV TZ=Europe/Berlin
......