From 903d5eacdd95e597d9ca9ef3f721cfbac3d68195 Mon Sep 17 00:00:00 2001 From: Willian Mitsuda Date: Thu, 7 Oct 2021 20:31:36 -0300 Subject: [PATCH] Add topic0 db to production docker image --- Dockerfile | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/Dockerfile b/Dockerfile index af322ed..e113ddb 100644 --- a/Dockerfile +++ b/Dockerfile @@ -19,8 +19,13 @@ WORKDIR /signatures COPY 4bytes/signatures /signatures/ COPY 4bytes/with_parameter_names /signatures/ +FROM alpine:3.14.0 AS topic0builder +WORKDIR /topic0 +COPY topic0/with_parameter_names /topic0/ + FROM nginx:1.21.1-alpine RUN apk add jq +COPY --from=topic0builder /topic0 /usr/share/nginx/html/topic0/ COPY --from=fourbytesbuilder /signatures /usr/share/nginx/html/signatures/ COPY --from=logobuilder /assets /usr/share/nginx/html/assets/ COPY nginx.conf /etc/nginx/conf.d/default.conf