Skip to content

Commit

Permalink
fixed Docker base build
Browse files Browse the repository at this point in the history
  • Loading branch information
albogdano committed Aug 6, 2018
1 parent 3625c3f commit 766cf26
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 3 deletions.
1 change: 1 addition & 0 deletions Dockerfile-base
Expand Up @@ -20,6 +20,7 @@ USER para
WORKDIR /para

RUN git clone --depth=1 https://github.com/Erudika/para /para/clone && \
mvn install -DskipTests=true -DskipITs=true && \
cd /para/clone/para-jar && \
mvn -Pbase clean package && \
mv target/para-base-*.jar /para/ && \
Expand Down
3 changes: 1 addition & 2 deletions README.md
Expand Up @@ -239,7 +239,7 @@ Use these `DAO` implementations to connect to different databases:
- **DynamoDB**: `AWSDynamoDAO` (included in `para-server`)
- **MongoDB**: [para-dao-mongodb](https://github.com/Erudika/para-dao-mongodb)
- **Cassandra**: [para-dao-cassandra](https://github.com/Erudika/para-dao-cassandra)
- **SQL** (H2/MySQL/MariaDB, PostgreSQL, etc.): [para-dao-sql](https://github.com/Erudika/para-dao-sql)
- **SQL** (H2/MySQL/SQL Server/PostgreSQL, etc.): [para-dao-sql](https://github.com/Erudika/para-dao-sql)
`H2DAO` is the default `DAO` and it's part of the SQL plugin (packaged with the JAR file)

## Search engine integrations
Expand Down Expand Up @@ -268,7 +268,6 @@ The `Cache` interface is implemented by:
## Wishlist / Roadmap

- `Search` implementation for MongoDB
- Make the API server more efficient with fibers (Quasar?)
- OpenAPI 3+ compatible API at `/v2` (not soon)

## Contributing
Expand Down
3 changes: 2 additions & 1 deletion deploy.sh
Expand Up @@ -16,8 +16,9 @@ echo "v$ver" > changelog.txt && \
echo "" >> changelog.txt && \
git log $lastver..HEAD --oneline >> changelog.txt && \
echo "" >> changelog.txt && \
echo "" >> changelog.txt && \
echo "### :package: [Download JAR](https://oss.sonatype.org/service/local/repositories/releases/content/com/erudika/para-jar/${ver}/para-jar-${ver}.jar)" >> changelog.txt && \
echo "" >> changelog.txt && \
echo "### :package: [Download WAR](https://oss.sonatype.org/service/local/repositories/releases/content/com/erudika/para-war/${ver}/para-war-${ver}.war)" >> changelog.txt && \
hub release create -F changelog.txt "v$ver" && \
rm changelog.txt

Expand Down

0 comments on commit 766cf26

Please sign in to comment.