Skip to content

Commit 1602ce6

Browse files
authored
actionloop source (#11)
* actionloop source * fixed paths
1 parent 51658e4 commit 1602ce6

File tree

1 file changed

+8
-1
lines changed

1 file changed

+8
-1
lines changed

rust1.34/Dockerfile

Lines changed: 8 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,14 @@
1414
# See the License for the specific language governing permissions and
1515
# limitations under the License.
1616
#
17-
FROM openwhisk/actionloop-v2:4376fee as builder
17+
FROM golang:1.11 as builder
18+
ENV PROXY_SOURCE=https://github.com/apache/incubator-openwhisk-runtime-go/archive/golang1.11@1.13.0-incubating.tar.gz
19+
RUN curl -L "$PROXY_SOURCE" | tar xzf - \
20+
&& mkdir -p src/github.com/apache \
21+
&& mv incubator-openwhisk-runtime-go-golang1.11-1.13.0-incubating \
22+
src/github.com/apache/incubator-openwhisk-runtime-go \
23+
&& cd src/github.com/apache/incubator-openwhisk-runtime-go/main \
24+
&& CGO_ENABLED=0 go build -o /bin/proxy
1825
FROM rust:1.34
1926
COPY --from=builder /bin/proxy /bin/proxy
2027
RUN mkdir -p /action

0 commit comments

Comments
 (0)