1
0
Fork 0
mirror of https://git.rwth-aachen.de/acs/public/villas/node/ synced 2025-03-09 00:00:00 +01:00

docker: fix caching issue

This commit is contained in:
Steffen Vogel 2019-10-17 21:39:28 +02:00
parent a2c45a2ca6
commit 5cb693bb31

View file

@ -28,14 +28,16 @@ ARG VERSION=unknown
ARG VARIANT=unknown
# Toolchain
RUN apt-get update && apt-get install -y \
RUN apt-get update && \
apt-get install -y \
autoconf automake libtool cmake \
pkg-config make gcc g++\
git curl wget tar bzip2 \
protobuf-compiler protobuf-c-compiler
# Dependencies
RUN apt-get install -y\
RUN apt-get update && \
apt-get install -y\
libssl-dev \
libprotobuf-dev \
libprotobuf-c-dev \