added Dockerfile

This commit is contained in:
gryckiej
2021-11-22 16:20:48 +01:00
parent fcc526f6e2
commit 8402b84b51

9
Dockerfile Normal file
View File

@@ -0,0 +1,9 @@
FROM ubuntu:18.04
COPY . /home/sample/repo
WORKDIR /home/sample/repo
RUN ls
RUN ls src
RUN apt upgrade
RUN apt update
RUN apt -y install maven
RUN mvn install