From 12d5260e90538e1c87302dd9cf29e7247e623d27 Mon Sep 17 00:00:00 2001 From: Lewis Senff Date: Fri, 19 Aug 2022 10:00:47 -0500 Subject: [PATCH] alpine downgrade --- Dockerfile | 8 ++------ 1 file changed, 2 insertions(+), 6 deletions(-) diff --git a/Dockerfile b/Dockerfile index f3fb83c..d3301b0 100644 --- a/Dockerfile +++ b/Dockerfile @@ -5,7 +5,7 @@ WORKDIR /app COPY requirements.txt . RUN pip install -r requirements.txt -FROM node:12-alpine AS app-base +FROM node:11-alpine AS app-base WORKDIR /app COPY app/package.json app/yarn.lock ./ COPY app/spec ./spec @@ -38,8 +38,4 @@ RUN mkdocs build # and use a nginx image to serve the content FROM nginx:alpine COPY --from=app-zip-creator /app.zip /usr/share/nginx/html/assets/app.zip -COPY --from=build /app/site /usr/share/nginx/html - -RUN apt-get update \ - && apt-get install -qqy curl \ - && rm -rf /var/lib/apt/lists +COPY --from=build /app/site /usr/share/nginx/html \ No newline at end of file