Skip to content
Snippets Groups Projects
Commit 69302f0d authored by Riccardo Maria Bianchi's avatar Riccardo Maria Bianchi :sunny:
Browse files

add test dockerfile for ubuntu

parent d05132e8
Branches docker-ubuntu
No related tags found
No related merge requests found
# Dockerfile.ubuntu
# ---------------------------------------------------------------
# CI image
# - Used for Gitlab (see .gitlab-ci.yml)
# - MUST be updated whenever the CI installation requirements (i.e., packages/versions) change
# ---------------------------------------------------------------
# ARGS are declared before any FROM so that they are globally available
# Reference: https://github.com/docker/for-mac/issues/2155#issuecomment-372639972
ARG BASE_DOCKER_IMAGE
# ---------------------------------------------------------------
# Base image
# - Install needed system packages with "apt"
# ---------------------------------------------------------------
# Make the base image configurable
FROM ${BASE_DOCKER_IMAGE} as base
# good colors for most applications
ENV TERM xterm
# install system packages
RUN apt-get update -qq &&
apt-get install -y -qq git cmake wget unzip build-essential freeglut3-dev libboost-all-dev qt5-default mercurial libeigen3-dev libsqlite3-dev
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment