faas/gateway/Dockerfile
2017-01-25 22:29:17 +00:00

14 lines
156 B
Docker

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