Browse Source

fix: update docker base image to 12.13

pull/1320/head
NGPixel 4 years ago
parent
commit
8c79467481
1 changed files with 2 additions and 2 deletions
  1. 4
      dev/build/Dockerfile

4
dev/build/Dockerfile

@ -1,7 +1,7 @@
# ==================== # ====================
# --- Build Assets --- # --- Build Assets ---
# ==================== # ====================
FROM node:10.16-alpine AS assets
FROM node:12.13-alpine AS assets
RUN apk add yarn g++ make python --no-cache RUN apk add yarn g++ make python --no-cache
@ -23,7 +23,7 @@ RUN yarn --production --frozen-lockfile --non-interactive
# =============== # ===============
# --- Release --- # --- Release ---
# =============== # ===============
FROM node:10.16-alpine
FROM node:12.13-alpine
LABEL maintainer="requarks.io" LABEL maintainer="requarks.io"
RUN apk add bash curl git openssh gnupg sqlite --no-cache && \ RUN apk add bash curl git openssh gnupg sqlite --no-cache && \

Loading…
Cancel
Save