From 60809e74139df8ac6e15027887679554cc60fcc7 Mon Sep 17 00:00:00 2001 From: Andrea Fazzi Date: Mon, 2 Mar 2020 14:42:08 +0100 Subject: [PATCH] Fix Dockerfile.aws including static files --- Dockerfile.aws | 10 ++++++++++ 1 file changed, 10 insertions(+) diff --git a/Dockerfile.aws b/Dockerfile.aws index 051aaabb..fcc9b809 100644 --- a/Dockerfile.aws +++ b/Dockerfile.aws @@ -32,7 +32,17 @@ COPY --from=builder /src/oef/oef /src/oef/oef # Copy config file COPY --from=builder /src/oef/config/config.yaml /src/oef/config/config.yaml +# Copy templates +COPY --from=builder /src/oef/templates /src/oef/templates + +# Copy dist +COPY --from=builder /src/oef/dist /src/oef/dist + +# Copy VERSION file +COPY --from=builder /src/oef/VERSION /src/oef/VERSION + WORKDIR /src/oef/ + # Run the oef binary. ENTRYPOINT ["/src/oef/oef"]