Skip to content

Commit

Permalink
patch: fix dockerfile copy error
Browse files Browse the repository at this point in the history
  • Loading branch information
OpenSrcerer committed Feb 6, 2024
1 parent cbd999e commit be53ecf
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 7 deletions.
3 changes: 1 addition & 2 deletions Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -37,9 +37,8 @@ COPY --from=BUILD /appbuild/* .
RUN chown 1001 /work \
&& chmod "g+rwX" /work \
&& chown 1001:root /work
COPY --chown=1001:root build/*-runner /work/application

EXPOSE 8080
USER 1001

CMD ["/work/quarkus-build/gen/paddy-auth-1.0.0-SNAPSHOT-runner", "-Dquarkus.http.host=0.0.0.0"]
CMD ["work/quarkus-build/gen/paddy-auth-1.0.0-SNAPSHOT-runner", "-Dquarkus.http.host=0.0.0.0"]
Original file line number Diff line number Diff line change
@@ -1,10 +1,5 @@
package online.danielstefani.paddy

import io.quarkus.test.junit.QuarkusTest
import io.restassured.RestAssured.given
import org.hamcrest.CoreMatchers.`is`
import org.junit.jupiter.api.Test

//@QuarkusTest
class HealthControllerTest {

Expand Down

0 comments on commit be53ecf

Please sign in to comment.