We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 5bbcd0b commit ec78bdcCopy full SHA for ec78bdc
Dockerfile
@@ -18,6 +18,9 @@ VOLUME ["/code"]
18
# Copy the application's code
19
COPY . /code
20
21
+# Ensure mvnw is executable
22
+RUN chmod +x /code/mvnw
23
+
24
# Wait for the db to startup(via dockerize), then
25
# Build and run steve, requires a db to be available on port 3306
26
CMD dockerize -wait tcp://mariadb:3306 -timeout 60s && \
0 commit comments