Skip to content
Snippets Groups Projects

feature/add-docker

Merged Fedor Lagutin requested to merge feature/add-docker into main
Compare and
9 files
+ 60
22
Preferences
Compare changes
Files
9
docker/Dockerfile 0 → 100644
+ 11
0
FROM openjdk:17.0.1-jdk-slim as cache
LABEL authors="lagutinfedor"
WORKDIR /app
COPY . .
RUN ./mvnw clean package
RUN cp target/*SNAPSHOT.jar brs-back.jar
EXPOSE 8080
\ No newline at end of file