Initial commit with Dockerfile

This commit is contained in:
Antonio Calanducci 2023-09-25 16:58:14 +02:00
parent 3aaba219f3
commit 55b8e6b7ea
2 changed files with 16 additions and 2 deletions

2
Dockerfile Normal file
View File

@ -0,0 +1,2 @@
FROM d4science/gcore-distribution
RUN wget --no-check-certificate https://nexus.d4science.org/nexus/content/repositories/gcube-staging-gcore/org/gcube/informationsystem/is-registry-service/2.1.4-4.16.0-126945/is-registry-service-2.1.4-4.16.0-126945.gar && mv is-registry-service-2.1.4-4.16.0-126945.gar is-registry-service.gar && gcore-deploy-service is-registry-service.gar

View File

@ -1,3 +1,15 @@
# is-registry-service-image
# IS Registry Service Docker image
This repo contains the Dockerfile to build the image of the gCore IS Registry service
This repo contains the Dockerfile to build the image of the gCore IS Registry service
## Build the image
```shell
$ docker build -t is-registry-service .
```
## Test the image
```shell
$ docker container run --name is-registry is-registry-service
```