summaryrefslogtreecommitdiff
path: root/Dockerfile
blob: 93d76bca60df46f65070053a97e888d1d4ef4a0c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
# PgFuse DockerFile

FROM ubuntu:14.04

RUN apt-get update
RUN apt-get -y --force-yes install make g++ wget unzip build-essential libpq-dev libfuse-dev

RUN wget https://github.com/andreasbaumann/pgfuse/archive/master.zip
RUN unzip master.zip

WORKDIR pgfuse-master

RUN make