-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathDockerfile
More file actions
37 lines (29 loc) · 759 Bytes
/
Dockerfile
File metadata and controls
37 lines (29 loc) · 759 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
FROM debian:testing
MAINTAINER YeastLab
RUN /bin/sh
# Install common package
RUN apt-get update
RUN apt-get update && \
apt-get install --no-install-recommends --yes \
git \
ca-certificates \
automake \
gcc \
make \
binutils \
libc6-dev \
gcc-arm-none-eabi \
gdb-arm-none-eabi \
libnewlib-arm-none-eabi \
binutils-arm-linux-gnueabi \
autoconf \
pkg-config \
libusb-1.0 \
wget
WORKDIR /home/cubicle/
RUN git clone https://github.com/texane/stlink.git
WORKDIR /home/cubicle/stlink
RUN ./autogen.sh
RUN ./configure || cat config.log
RUN make
WORKDIR /home/cubicle/