Files
faas/gateway/Dockerfile
2017-01-22 14:11:36 +00:00

13 lines
155 B
Docker

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