Skip to content

Commit b5c6c51

Browse files
committed
2 parents 755add9 + 03cb5ea commit b5c6c51

File tree

11 files changed

+32
-8
lines changed

11 files changed

+32
-8
lines changed

mrt-inttest-services/docker-compose.yml

Lines changed: 9 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -59,4 +59,12 @@ services:
5959
image: ${ECR_REGISTRY}/mysql-ruby-lambda
6060
build:
6161
context: mysql-ruby-lambda
62-
dockerfile: Dockerfile
62+
dockerfile: Dockerfile
63+
reveal-md:
64+
container_name: reveal-md
65+
image: ${ECR_REGISTRY}/reveal-md
66+
build:
67+
context: reveal-md
68+
dockerfile: Dockerfile
69+
args:
70+
ECR_REGISTRY: ${ECR_REGISTRY}
317 Bytes
Binary file not shown.
Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
ARG ECR_REGISTRY=ecr_registry_not_set
2+
3+
FROM ${ECR_REGISTRY}/docker-hub/webpronl/reveal-md
4+
5+
# Update packages and npm dependencies to address security vulnerabilities
6+
RUN apk update && apk upgrade
7+
RUN cd /app && npm update
Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
services:
2+
reveal-md:
3+
container_name: reveal-md
4+
image: ${ECR_REGISTRY}/reveal-md
5+
build:
6+
context: .
7+
dockerfile: Dockerfile
8+
args:
9+
ECR_REGISTRY: ${ECR_REGISTRY}

mrt-services/ingest/mrt-ingest

0 commit comments

Comments
 (0)