dockerfile: small typos to make them two Dockerfiles more similar

This commit is contained in:
Pavol Rusnak 2018-02-19 01:03:40 +01:00
parent 28f7bf2a5d
commit 48998e5e5f
No known key found for this signature in database
GPG Key ID: 91F3B339B9A02A3D
2 changed files with 4 additions and 2 deletions

View File

@ -4,7 +4,8 @@ FROM debian:9
# install build tools and dependencies
RUN apt-get update && apt-get install -y \
RUN apt-get update && \
apt-get install -y \
build-essential curl unzip git python3 python3-pip gcc-arm-none-eabi libnewlib-arm-none-eabi
ENV PROTOBUF_VERSION=3.4.0

View File

@ -7,7 +7,8 @@ FROM debian:9
RUN dpkg --add-architecture i386 && \
apt-get update && \
apt-get install -y \
build-essential curl unzip git python3 python3-pip gcc-arm-none-eabi libnewlib-arm-none-eabi libsdl2-dev:i386 libsdl2-image-dev:i386 gcc-multilib
build-essential curl unzip git python3 python3-pip gcc-arm-none-eabi libnewlib-arm-none-eabi \
libsdl2-dev:i386 libsdl2-image-dev:i386 gcc-multilib
ENV PROTOBUF_VERSION=3.4.0
RUN curl -LO "https://github.com/google/protobuf/releases/download/v${PROTOBUF_VERSION}/protoc-${PROTOBUF_VERSION}-linux-x86_64.zip"