Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
29 changes: 29 additions & 0 deletions Dockerfile
Original file line number Diff line number Diff line change
@@ -0,0 +1,29 @@
# 1) Build Docker Image: docker build --tag tpm171e .
# 2) Make all: run --rm -it -v="$(pwd):/code" tpm171e
# 3) Custom build: docker run --rm -it -v="$(pwd):/code" tpm171e bash

FROM ubuntu:18.04

ENV DEBIAN_FRONTEND noninteractive
ENV SERVERNUM 1

RUN mkdir /code
WORKDIR /code

RUN apt update && apt install -y apt-utils \
build-essential \
net-tools \
cmake \
git \
nano \
gdb \
strace \
android-tools-adb \
android-tools-fastboot \
gcc-arm-none-eabi \
binutils-arm-none-eabi \
golang \
go-bindata \
xxd

CMD make