Files
faas/gateway/Dockerfile
Alex Ellis f944b088be Stack 1 (#4)
* - Extend stack to include a test function
* - Allow _ char in routes
* - Let Dockerfile shrink by coming from alpine

* Update build.sh

* Document stack deploy

* Update README.md

* fix port in README (#3)
2017-01-09 20:02:18 +00:00

10 lines
116 B
Docker

FROM alpine:latest
COPY gateway .
EXPOSE 8080
ENV http_proxy ""
ENV https_proxy ""
CMD ["./gateway"]