Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 1 addition & 4 deletions .github/workflows/relisUnitTest.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ jobs:

- name: Check if Docker is installed
run: |
if docker --version; then
if docker info; then
echo "Docker is installed in your repository."
else
echo "Docker is not installed, please install Docker in your Github Repository."
Expand All @@ -29,9 +29,6 @@ jobs:
run: docker compose up -d
working-directory: deployment

- name: Wait for Application to Start
run: sleep 10

- name: Set relis-app Container permission
run: |
docker exec relis-app chmod -R 777 /u/relis/public_html/relis_app/
Expand Down
2 changes: 0 additions & 2 deletions deployment/docker-compose.yml
Original file line number Diff line number Diff line change
Expand Up @@ -69,5 +69,3 @@ services:
- 8083:80
volumes:
- ../:/u/relis/public_html
extra_hosts:
- "host.docker.internal:host-gateway"
4 changes: 2 additions & 2 deletions deployment/tomcat/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM tomcat:8.5.51-jdk8-openjdk-slim
FROM tomcat:8.5.51-jdk8-adoptopenjdk-hotspot

RUN apt-get update && apt-get install -y \
python3 \
Expand All @@ -15,4 +15,4 @@ RUN sed 's/\r$//g' /usr/local/bin/entrypoint.sh
RUN chmod +x /usr/local/bin/entrypoint.sh
EXPOSE 8080
EXPOSE 8181
ENTRYPOINT [ "/usr/local/bin/entrypoint.sh" ]
ENTRYPOINT [ "/usr/local/bin/entrypoint.sh" ]
Loading