Skip to content

Commit e80624e

Browse files
authored
Merge pull request #439 from MatrixAI/feature-docker-exec
Updates to Docker execution
2 parents e425469 + 275e47f commit e80624e

2 files changed

Lines changed: 2 additions & 2 deletions

File tree

.gitlab-ci.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -339,7 +339,7 @@ integration:docker:
339339
- >
340340
nix-shell --arg ci true --run $'
341341
image_and_tag="$(docker load --input ./builds/*docker* | cut -d\' \' -f3)";
342-
PK_TEST_COMMAND="docker run \$DOCKER_OPTIONS $image_and_tag /bin/polykey" npm run test -- tests/bin;
342+
PK_TEST_COMMAND="docker run \$DOCKER_OPTIONS $image_and_tag" npm run test -- tests/bin;
343343
'
344344
rules:
345345
# Runs on staging commits and ignores version commits

release.nix

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -80,7 +80,7 @@ in
8080
mkdir -m 1777 tmp
8181
'';
8282
config = {
83-
Cmd = [ "/bin/polykey" ];
83+
Entrypoint = "/bin/polykey";
8484
};
8585
};
8686
package = {

0 commit comments

Comments
 (0)