Skip to content
This repository was archived by the owner on Dec 2, 2020. It is now read-only.

Commit 56bdbdd

Browse files
cjenseniusclareliguori
authored andcommitted
* Modify .dockerignore file so it allows the img2lambda code to be copied (#21)
* Modify path to binary in Dockerfile
1 parent a368930 commit 56bdbdd

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

.dockerignore

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,6 @@
11
.git
22
bin
33
output
4-
img2lambda
54
AUTHORS.md
65
CONTRIBUTING.md
76
LICENSE

Dockerfile

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,11 +3,12 @@
33

44
FROM golang:1.11 AS builder
55

6-
WORKDIR /go/src/github.com/awslabs/img2lambda
6+
WORKDIR /go/src/github.com/awslabs/aws-lambda-container-image-converter
77

88
COPY . ./
9+
910
RUN make install-deps && make
1011

1112
FROM busybox:glibc
12-
COPY --from=builder /go/src/github.com/awslabs/img2lambda/bin/local/img2lambda /bin/img2lambda
13+
COPY --from=builder /go/src/github.com/awslabs/aws-lambda-container-image-converter/bin/local/img2lambda /bin/img2lambda
1314
CMD [ "/bin/img2lambda" ]

0 commit comments

Comments
 (0)