Skip to content

Commit

Permalink
chore: revert changes to dockerfiles
Browse files Browse the repository at this point in the history
  • Loading branch information
VsevolodX committed Nov 3, 2023
1 parent ebd1efb commit dbf316b
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 2 deletions.
8 changes: 7 additions & 1 deletion .github/workflows/docker-build-test/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -24,5 +24,11 @@ runs:
shell: bash -l {0}
run: |
docker run -d -p 3001:3001 --name=materials-designer materials-designer:latest
while ! docker logs materials-designer 2>&1 | grep "Compiled"; do
failed=$(docker logs materials-designer 2>&1 | grep "Failed")
if [[ "$failed" != "" ]]; then
exit 1
fi
sleep 5
done
docker run --network=host materials-designer-test
2 changes: 1 addition & 1 deletion dockerfiles/app/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
ARG BASE_IMAGE=node
# Not using "alpine" to allow node gyp to work with package installations from "https://github.com" directly
ARG IMAGE_TAG=14.19.3
ARG IMAGE_TAG=14
FROM ${BASE_IMAGE}:${IMAGE_TAG}

WORKDIR /opt/app
Expand Down

0 comments on commit dbf316b

Please sign in to comment.