Skip to content

Commit

Permalink
ensure java docker containers can be build
Browse files Browse the repository at this point in the history
  • Loading branch information
Remo Zellmer committed Jan 22, 2022
1 parent 78c0d44 commit f691416
Show file tree
Hide file tree
Showing 5 changed files with 8 additions and 4 deletions.
3 changes: 2 additions & 1 deletion core/hasura/docker/docker-compose.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,8 @@ services:
ports:
- 8081:8080
external_links:
- smb-postgres
- smb-postgres
- smb-hasura-auth

networks:
default:
Expand Down
4 changes: 2 additions & 2 deletions hasura-auth/docker/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,8 @@ LABEL maintainer="Xailabs<[email protected]>"

WORKDIR /opt/hasura-auth
COPY . .
RUN sed -i -e 's/\r$//' ./gradlew
RUN chmod +x ./gradlew
RUN sed -i 's/\r$//' gradlew
RUN chmod +x gradlew
RUN ./gradlew bootJar

# Runnable Container
Expand Down
2 changes: 2 additions & 0 deletions mds-sync/docker/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,8 @@ LABEL maintainer="xailabs<[email protected]>"

WORKDIR /opt/mds-sync
COPY . .
RUN sed -i 's/\r$//' gradlew
RUN chmod +x gradlew
RUN ./gradlew bootWar


Expand Down
2 changes: 1 addition & 1 deletion search-indexer/docker/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ LABEL maintainer="xailabs<[email protected]>"

WORKDIR /opt/search-indexer
COPY . .
RUN sed -i -e 's/\r$//' ./gradlew
RUN sed -i 's/\r$//' gradlew
RUN chmod +x gradlew
RUN ./gradlew bootWar

Expand Down
1 change: 1 addition & 0 deletions sitemap/docker/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@ LABEL maintainer="Xailabs<[email protected]>"

WORKDIR /opt/smb-sitemap
COPY . .
RUN sed -i 's/\r$//' gradlew
RUN chmod +x gradlew
RUN ./gradlew bootJar

Expand Down

0 comments on commit f691416

Please sign in to comment.