Add Dockerfile

This commit is contained in:
Peter Stuifzand 2018-02-16 22:17:52 +01:00
parent 6a300bced6
commit 9493c44f2a

5
Dockerfile Normal file
View File

@ -0,0 +1,5 @@
FROM ubuntu
RUN apt-get -y update && apt-get install -y ca-certificates
ADD ./server /usr/local/bin
EXPOSE 80
ENTRYPOINT ["/usr/local/bin/server"]