From 7b9dd0ed506ca4b6c4fd93fd38ffc41aae08e57e Mon Sep 17 00:00:00 2001 From: Elmar Kresse Date: Wed, 19 Jun 2024 01:06:30 +0200 Subject: [PATCH] feat:#36 fixed Dockerfile Entrypoint --- services/data-manager/Dockerfile | 2 +- services/ical/Dockerfile | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/services/data-manager/Dockerfile b/services/data-manager/Dockerfile index 7bb6a3f..f1bcae8 100644 --- a/services/data-manager/Dockerfile +++ b/services/data-manager/Dockerfile @@ -17,7 +17,7 @@ # build stage FROM golang:alpine AS build -WORKDIR /app +WORKDIR /htwkalender-data-manager RUN apk add --no-cache --update go gcc g++ # Copy the source from the current directory to the Working Directory inside the container diff --git a/services/ical/Dockerfile b/services/ical/Dockerfile index d87835a..19d231c 100644 --- a/services/ical/Dockerfile +++ b/services/ical/Dockerfile @@ -17,7 +17,7 @@ # build stage FROM golang:alpine AS build -WORKDIR /app +WORKDIR /htwkalender-ical RUN apk add --no-cache --update go gcc g++ # Copy the source from the current directory to the Working Directory inside the container