Commit 069cb4e1 authored by Enes Karakas's avatar Enes Karakas
Browse files

test push

parent bcdfbfd5
...@@ -23,3 +23,7 @@ ...@@ -23,3 +23,7 @@
/dist/ /dist/
/nbdist/ /nbdist/
/.nb-gradle/ /.nb-gradle/
### VSCode ###
.vscode
\ No newline at end of file
FROM maven:3-jdk-8-alpine
WORKDIR /usr/src/app
COPY . /usr/src/app
RUN mvn package
ENV PORT 5000
EXPOSE $PORT
CMD [ "sh", "-c", "mvn -Dserver.port=${PORT} spring-boot:run" ]
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment