]> Untitled Git - lemmy-ui.git/commitdiff
Using newer alpine image (#392)
authorDessalines <dessalines@users.noreply.github.com>
Fri, 3 Sep 2021 12:23:55 +0000 (08:23 -0400)
committerGitHub <noreply@github.com>
Fri, 3 Sep 2021 12:23:55 +0000 (08:23 -0400)
Dockerfile

index a56a391b96b67836bd8be7337acd97273865aea1..a7f323b898358934e81790074f9e4a6f6f965383 100644 (file)
@@ -1,4 +1,4 @@
-FROM node:14-alpine as builder\r
+FROM node:alpine as builder\r
 RUN apk update && apk add yarn python3 build-base gcc wget git --no-cache\r
 \r
 WORKDIR /usr/src/app\r
@@ -24,7 +24,7 @@ RUN echo "export const VERSION = '$(git describe --tag)';" > "src/shared/version
 RUN yarn\r
 RUN yarn build:prod\r
 \r
-FROM node:14-alpine as runner\r
+FROM node:alpine as runner\r
 COPY --from=builder /usr/src/app/dist /app/dist\r
 COPY --from=builder /usr/src/app/node_modules /app/node_modules\r
 \r