-
Notifications
You must be signed in to change notification settings - Fork 8
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #9 from dduportal-dockerfiles/fix-temp-make
Fix error "temp_make fails with "unrecognized option: directory"
- Loading branch information
Showing
2 changed files
with
12 additions
and
7 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -7,7 +7,7 @@ WORKDIR /bats | |
RUN npm install | ||
|
||
# Minimalistic image | ||
FROM alpine:3.7 | ||
FROM alpine:3.10 | ||
LABEL Maintainer="Damien DUPORTAL <[email protected]>" | ||
ENV BATS_HELPERS_DIR=/opt/bats-helpers | ||
|
||
|
@@ -20,7 +20,7 @@ COPY --from=dependencies-solver /bats/node_modules/bats-file /opt/bats-helpers/b | |
COPY --from=dependencies-solver /bats/node_modules/bats-assert /opt/bats-helpers/bats-assert | ||
|
||
|
||
RUN apk add --no-cache bash \ | ||
RUN apk add --no-cache bash coreutils \ | ||
&& ln -s /opt/bats/libexec/bats /sbin/bats | ||
|
||
WORKDIR /tests | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters