mirror of
https://github.com/openfaas/faas.git
synced 2025-06-25 00:03:24 +00:00
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"]
|