moving docker to a separate package

This commit is contained in:
Szakalakamaka
2020-09-29 14:06:15 +02:00
parent 493e8cc30d
commit d6de7c5e20
3 changed files with 2 additions and 6 deletions

View File

@@ -1,4 +0,0 @@
sudo: required
services: docker
script:
- docker-compose up -d --build

View File

@@ -1,6 +1,6 @@
FROM maven:3.6.3-jdk-14 as builder
WORKDIR application
COPY ../../../../../../.. ./
COPY ./ ./
RUN mvn clean install
FROM openjdk:14 as layerBuilder

View File

@@ -5,7 +5,7 @@ services:
restart: "no"
klaus:
build:
context: ../../../../../../..
context: .
dockerfile: Dockerfile
container_name: klaus
restart: "no"