Skip to content
Snippets Groups Projects
Commit 44c2ca5a authored by Grzegorz Bizon's avatar Grzegorz Bizon
Browse files

Merge branch 'fix/update-sqlite-in-dockerfiler' into 'master'

Add SQLite3 to Dockerfile

See merge request !245
parents cbbbd4e0 62098125
No related branches found
No related tags found
1 merge request!245Add SQLite3 to Dockerfile
Pipeline #
FROM ubuntu:16.04
MAINTAINER hrvoje.marjanovic@gmail.com
LABEL authors.maintainer "Grzegorz Bizon <grzegorz@gitlab.com>"
LABEL authors.contributor "Hrvoje Marjanovic <hrvoje.marjanovic@gmail.com>"
 
ENV DEBIAN_FRONTEND noninteractive
 
RUN apt-get update
RUN apt-get -y install curl git-core software-properties-common python-software-properties
# This PPA contains an up-to-date version of Go
RUN apt-add-repository -y ppa:ubuntu-lxc/lxd-stable
RUN apt-get update
 
# install essentials
RUN apt-get -y install build-essential
RUN apt-get install -y -q git
RUN apt-get install -y libssl-dev
 
# rest of gitlab requirements
RUN apt-get -y install git postgresql postgresql-contrib libpq-dev redis-server libicu-dev cmake g++ nodejs libkrb5-dev golang ed pkg-config
RUN apt-get install -y libreadline-dev npm sudo
RUN apt-get install -y git postgresql postgresql-contrib libpq-dev redis-server \
libicu-dev cmake g++ nodejs libkrb5-dev golang ed pkg-config libsqlite3-dev \
libreadline-dev npm sudo
 
# Install rbenv
 
Loading
Loading
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