Skip to content

Commit

Permalink
commit
Browse files Browse the repository at this point in the history
  • Loading branch information
Himanshu Gupta committed Jul 2, 2023
1 parent 5041280 commit dae738c
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -38,6 +38,7 @@ components:
build:
context: ./amazon-dynamodb-quickstart
dockerfile: src/main/docker/Dockerfile.bunnyshell.dev
target: dev
environment:
LOCALSTACK: 'dynamodb-localstack'
ports:
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -77,14 +77,14 @@
# accessed directly. (example: "foo.example.com,bar.example.com")
#
###
FROM registry.access.redhat.com/ubi8/openjdk-11:1.15
FROM registry.access.redhat.com/ubi8/openjdk-11:1.15 as dev

ENV LANGUAGE='en_US:en'

COPY --chown=185 .mvn .mvn
COPY --chown=185 pom.xml mvnw mvnw.cmd ./
RUN ./mvnw dependency:resolve
COPY --chown=185 src src

RUN ./mvnw clean quarkus:dev -Dmaven.test.skip
CMD ["./mvnw","clean","quarkus:dev","-Dmaven.test.skip"]


0 comments on commit dae738c

Please sign in to comment.