Skip to content

Commit

Permalink
v0.2.1 (#16)
Browse files Browse the repository at this point in the history
* chore: test group ownership change for taq binary

* chore: change ownership GID to 121

* chore: change ownership UID to 1001

* chore: change ownership of project files for tests

* chore: fix project location

* chore: added test to hello-tacos

* chore: change ownership of parent directory

* chore: check username for UID 1001

* chore: try change permissiosn for only .taq dir

* chore: test changing permissions of parent directory to 777

* chore: cleanup
  • Loading branch information
GImbrailo authored Jul 22, 2022
1 parent 7b58f1b commit 559f6cd
Show file tree
Hide file tree
Showing 3 changed files with 31 additions and 30 deletions.
2 changes: 0 additions & 2 deletions Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,6 @@
FROM debian:bullseye
FROM node:16

RUN apt update

# Set the DENO_DIR environment variable to controll where the cache is built
RUN mkdir deno
ENV DENO_DIR=/deno
Expand Down
7 changes: 5 additions & 2 deletions entrypoint.sh
Original file line number Diff line number Diff line change
@@ -1,5 +1,4 @@
#!/bin/bash

echo "Set localhost to 172.17.0.1"
echo "172.17.0.1 localhost" > /etc/hosts

Expand Down Expand Up @@ -53,5 +52,9 @@ if [ -n "$INPUT_TASK" ] && [ "$INPUT_TASK" != "init" ]; then
fi

if [ "$INPUT_TESTS" == "true" ] || [ "$INPUT_TESTS" == "True" ]; then
chmod -R 777 ./.taq
taq test
fi
exit_code=$?
chmod -R 755 ./.taq
exit $exit_code
fi
52 changes: 26 additions & 26 deletions example-projects/hello-tacos/package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

0 comments on commit 559f6cd

Please sign in to comment.