Add initial Docker configuration files

This commit is contained in:
Tobie Morgan Hitchcock 2020-06-30 11:10:44 +01:00
parent 95783c03f2
commit 8fb6b27cfc
2 changed files with 9 additions and 0 deletions

2
.dockerignore Normal file
View file

@ -0,0 +1,2 @@
*
!surreal

7
Dockerfile Normal file
View file

@ -0,0 +1,7 @@
FROM alpine:latest
RUN apk add --update --no-cache ca-certificates
ADD surreal /usr/bin/
ENTRYPOINT ["surreal"]