Skip to content

Commit 1668f8e

Browse files
committed
revert binary file location change in docker image
1 parent 10a92d0 commit 1668f8e

File tree

1 file changed

+5
-3
lines changed

1 file changed

+5
-3
lines changed

Dockerfile.github-actions

+5-3
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,10 @@ FROM alpine:3.13
22

33
RUN apk add --no-cache ca-certificates
44

5-
COPY migrate /usr/bin/migrate
6-
RUN ln -s /usr/bin/migrate /migrate
5+
COPY migrate /usr/local/bin/migrate
6+
7+
RUN ln -s /usr/local/bin/migrate /usr/bin/migrate
8+
RUN ln -s /usr/local/bin/migrate /migrate
79

810
ENTRYPOINT ["migrate"]
9-
CMD ["--help"]
11+
CMD ["--help"]

0 commit comments

Comments
 (0)