Skip to content

Commit

Permalink
Update base container to Ubuntu 20.04
Browse files Browse the repository at this point in the history
This is necessary because the image can no longer be built with the
outdated non-LTS release previously used. Additionally, we are now using
Python 3 as the default Python version.
  • Loading branch information
Will Abele committed Mar 17, 2021
1 parent 0dd6afd commit 5350595
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM starlabio/ubuntu-base:1.5
FROM starlabio/ubuntu-base:1.7
MAINTAINER Star Lab <[email protected]>

ARG plant_uml_directory=/opt/plantuml
Expand Down Expand Up @@ -32,7 +32,9 @@ RUN apt-get update && \
apt-get clean && \
rm -rf /var/lib/apt/lists* /tmp/* /var/tmp/*

RUN pip install \
RUN update-alternatives --install /usr/bin/python python /usr/bin/python3 1000

RUN pip3 install \
argparse \
pyaml \
requests \
Expand Down

0 comments on commit 5350595

Please sign in to comment.