Files
faas/gateway/Dockerfile
Alex Ellis ea488cf742 - Extend stack to include a test function
- Allow _ char in routes
- Let Dockerfile shrink by coming from alpine
2017-01-09 17:35:46 +00:00

10 lines
116 B
Docker

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