1
0
mirror of https://github.com/rancher/os-kernel.git synced 2025-09-13 05:25:16 +00:00
Files
os-kernel/Dockerfile.dapper

14 lines
333 B
Docker
Raw Normal View History

2016-04-19 21:58:56 -07:00
FROM ubuntu:16.04
2015-12-23 20:13:15 +05:00
RUN apt-get update && \
2016-06-15 22:59:59 -07:00
apt-get install -y build-essential wget libncurses5-dev unzip bc curl python rsync ccache git vim libssl-dev kmod
2015-12-23 20:13:15 +05:00
RUN locale-gen en_US.UTF-8
ENV LANG en_US.UTF-8
ENV DAPPER_SOURCE /source
ENV DAPPER_OUTPUT ./dist
ENV SHELL /bin/bash
ENV HOME ${DAPPER_SOURCE}
2015-12-23 20:13:15 +05:00
WORKDIR ${DAPPER_SOURCE}