Dockerfile: don't axe the source from the image

Signed-off-by: Vincent Batts <vbatts@hashbangbash.com>
This commit is contained in:
Vincent Batts 2017-06-08 14:42:19 -04:00
parent be4ac4b880
commit 3388ff82f2
Signed by: vbatts
GPG Key ID: 10937E57733F1362
1 changed files with 1 additions and 1 deletions

View File

@ -6,6 +6,6 @@ ENV MONGODB_SERVICE_HOST 127.0.0.1
ENV MONGODB_SERVICE_PORT 27017
RUN dnf install -y golang git bzr && \
go get github.com/vbatts/imgsrv && \
rm -rf /usr/local/src /usr/local/pkg && \
rm -rf /usr/local/pkg && \
dnf remove -y golang git bzr
ENTRYPOINT ["/usr/local/src/github.com/vbatts/imgsrv/run.sh"]