-
Notifications
You must be signed in to change notification settings - Fork 0
/
Dockerfile
44 lines (38 loc) · 843 Bytes
/
Dockerfile
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
38
39
40
41
42
43
44
FROM ubuntu:16.04
MAINTAINER ozanunsal <[email protected]>
RUN apt-get update && apt-get -y upgrade && apt-get -y install \
kmod \
gawk \
wget \
git-core \
diffstat \
unzip \
texinfo \
gcc-multilib \
build-essential \
chrpath \
socat \
cpio \
python3 \
python3-pip \
python3-pexpect \
xz-utils \
debianutils \
iputils-ping \
libsdl1.2-dev \
xterm \
curl \
vim \
tzdata \
uml-utilities \
python3-virtualenv daemon \
lighttpd \
python3-gi python-pip python3-aptdaemon.gtk3widgets \
locales apt-utils sudo \
&& dpkg-reconfigure locales && locale-gen en_US.UTF-8 && update-locale LC_ALL=en_US.UTF-8 LANG=en_US.UTF-8
ENV LANG en_US.utf8
RUN apt-get clean && rm -rf /var/lib/apt/lists/* /tmp/* /var/tmp/*
RUN rm /bin/sh && ln -s /bin/bash /bin/sh
COPY . /opt/yocto
WORKDIR /opt/yocto/workspace
RUN /bin/bash