summaryrefslogtreecommitdiff
path: root/Dockerfile
blob: 96773bebae4a0df5e70261819a200d0349c6ede6 (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 wget https://github.com/andreasbaumann/pgfuse/archive/master.zip
RUN unzip master.zip

WORKDIR pgfuse-master

RUN make