-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathDockerfile
36 lines (29 loc) · 984 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
############################################################
# Dockerfile
############################################################
# Set the base image
FROM ubuntu:18.10
############################################################
# Configuration
############################################################
ENV VERSION "0.1.8"
ENV LC_ALL "C.UTF-8"
ENV LANG "C.UTF-8"
############################################################
# Installation
############################################################
# System Packages
RUN apt-get update &&\
apt-get install -y -qq build-essential cmake python python-pip
# Software
RUN echo "Installing Software ..." &&\
# CGET
pip install cget
RUN echo "CleanUp ..." &&\
# APT
apt-get clean autoclean &&\
apt-get autoremove --yes &&\
rm -rf /var/lib/{apt,dpkg,cache,log}/
############################################################
# Execution
############################################################