From f6b5c7a2366345ec4c105dd4db61df412c218677 Mon Sep 17 00:00:00 2001 From: ausias-armesto Date: Mon, 12 Aug 2024 18:22:22 +0200 Subject: [PATCH] Adding build context (#148) * Adding build context * Adding a dummy dockerfile * Using fixed tag --- docker-compose.yml | 2 ++ hopr-admin/Dockerfile | 3 +++ 2 files changed, 5 insertions(+) create mode 100644 hopr-admin/Dockerfile diff --git a/docker-compose.yml b/docker-compose.yml index fb3c32c..21ddb75 100644 --- a/docker-compose.yml +++ b/docker-compose.yml @@ -51,6 +51,8 @@ services: admin: # The actual image name will be set automatically by the sdk. # This tag only serves to pull the correct image during build. + build: + context: ./hopr-admin image: >- europe-west3-docker.pkg.dev/hoprassociation/docker-images/hopr-admin:2.1.4 ports: diff --git a/hopr-admin/Dockerfile b/hopr-admin/Dockerfile new file mode 100644 index 0000000..2943806 --- /dev/null +++ b/hopr-admin/Dockerfile @@ -0,0 +1,3 @@ +FROM europe-west3-docker.pkg.dev/hoprassociation/docker-images/hopr-admin:stable + +ENTRYPOINT ["nginx", "-g", "daemon off;"] \ No newline at end of file