[docker] Dockerfile for coffer-server
This commit is contained in:
parent
caec5a14c7
commit
8bcf05fd8f
2 changed files with 11 additions and 0 deletions
2
TODO.org
2
TODO.org
|
@ -22,3 +22,5 @@
|
|||
- [ ] Encrypt key request with client key
|
||||
- [ ] Decrypt key request with client key
|
||||
- [ ] Generate trampolin sh from dockerfile
|
||||
* Docker
|
||||
** TODO Create Dockerfile for server
|
||||
|
|
9
docker/Dockerfile
Normal file
9
docker/Dockerfile
Normal file
|
@ -0,0 +1,9 @@
|
|||
FROM gcr.io/distroless/static
|
||||
|
||||
COPY ./* /app/
|
||||
|
||||
EXPOSE 9187
|
||||
ENTRYPOINT ["/app/coffer-server", "-k", \
|
||||
"-m", "/app/masterkey.cbor", \
|
||||
"-s", "/app/secrets.cbor", \
|
||||
"--ip", "0.0.0.0"]
|
Loading…
Reference in a new issue