From 5c4836ba2850337e3da2bc23a1f7942c060352f0 Mon Sep 17 00:00:00 2001 From: jackshirazi Date: Wed, 8 Dec 2021 17:44:59 +0000 Subject: [PATCH 1/2] alpine has issues remote attaching, use standard eg https://github.com/docker-library/openjdk/issues/372 --- users-api/Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/users-api/Dockerfile b/users-api/Dockerfile index 7427e7b25..1ab3b1a7d 100644 --- a/users-api/Dockerfile +++ b/users-api/Dockerfile @@ -1,4 +1,4 @@ -FROM openjdk:8-alpine +FROM openjdk:8 EXPOSE 8083 WORKDIR /usr/src/app From dc031d12ab8ab51bea6384e029e661e987957f02 Mon Sep 17 00:00:00 2001 From: jackshirazi Date: Wed, 8 Dec 2021 17:50:08 +0000 Subject: [PATCH 2/2] needs to be a more up to date image to work --- auth-api/Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/auth-api/Dockerfile b/auth-api/Dockerfile index 552724ffe..77e9ef389 100644 --- a/auth-api/Dockerfile +++ b/auth-api/Dockerfile @@ -1,4 +1,4 @@ -FROM golang:1.9-alpine +FROM golang:1.15.2-alpine EXPOSE 8081