Skip to content

Commit

Permalink
Added explicit versions to avoid downloading mismatched packages
Browse files Browse the repository at this point in the history
  • Loading branch information
Michał Kurowski committed Aug 10, 2020
1 parent 4ff2fd3 commit b537b36
Showing 1 changed file with 7 additions and 7 deletions.
14 changes: 7 additions & 7 deletions Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -34,9 +34,9 @@ ARG MSP430_INSTALL_DIR=${TOOLS_DIR}/msp430-gcc

# Basic utilities
RUN apt-get update && apt-get install -y \
cmake \
g++ \
gcc \
cmake=3.13.4-1build1 \
g++=4:9.2.1-3.1ubuntu1 \
gcc=4:9.2.1-3.1ubuntu1 \
git \
git-lfs

Expand All @@ -47,13 +47,13 @@ RUN mkdir -p ${HOME_DIR} && \

# LLVM
RUN apt-get update && apt-get install -y \
clang \
llvm-dev
clang=1:9.0-49~exp1 \
llvm-dev=1:9.0-49~exp1

# GNAT
RUN apt-get update && apt-get install -y \
gnat \
gprbuild
gnat=8.0.1ubuntu1 \
gprbuild=2018-6

# MSP430-GCC
COPY tools/${MSP430_INSTALLER} ${TOOLS_DIR}
Expand Down

0 comments on commit b537b36

Please sign in to comment.