mirror of
https://github.com/openfaas/faas.git
synced 2025-06-10 09:16:48 +00:00
14 lines
156 B
Docker
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"]
|