aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--Dockerfile9
1 files changed, 3 insertions, 6 deletions
diff --git a/Dockerfile b/Dockerfile
index 744ded857..88da06f02 100644
--- a/Dockerfile
+++ b/Dockerfile
@@ -1,8 +1,7 @@
1FROM debian:jessie 1FROM debian:jessie
2MAINTAINER Erik Dasque <erik@frenchguys.com> 2MAINTAINER Erik Dasque <erik@frenchguys.com>
3 3
4RUN apt-get update 4RUN apt-get update && apt-get install --no-install-recommends -y build-essential \
5RUN apt-get install --no-install-recommends -y build-essential \
6 gcc \ 5 gcc \
7 unzip \ 6 unzip \
8 wget \ 7 wget \
@@ -15,10 +14,8 @@ RUN apt-get install --no-install-recommends -y build-essential \
15 gcc-arm-none-eabi \ 14 gcc-arm-none-eabi \
16 binutils-arm-none-eabi \ 15 binutils-arm-none-eabi \
17 libnewlib-arm-none-eabi \ 16 libnewlib-arm-none-eabi \
18 git 17 git \
19 18 && rm -rf /var/lib/apt/lists/*
20RUN apt-get clean
21RUN rm -rf /var/lib/apt/lists/*
22 19
23ENV keyboard=ergodox 20ENV keyboard=ergodox
24ENV subproject=ez 21ENV subproject=ez