mirror of
https://github.com/openfaas/faas.git
synced 2025-06-24 07:43:25 +00:00
* - 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)
10 lines
116 B
Docker
10 lines
116 B
Docker
FROM alpine:latest
|
|
|
|
COPY gateway .
|
|
|
|
EXPOSE 8080
|
|
ENV http_proxy ""
|
|
ENV https_proxy ""
|
|
|
|
CMD ["./gateway"]
|