summaryrefslogtreecommitdiff
path: root/Dockerfile
blob: d755d56c7a2cc0f43eefc0a59a6bb13dcb6f9945 (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++ unzip build-essential libpq-dev libfuse-dev

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

WORKDIR pgfuse-master

RUN make