Procházet zdrojové kódy

Fix frontend container build

pull/583/head
Guillaume Vincent před 3 roky
rodič
revize
2bc7745627
1 změnil soubory, kde provedl 2 přidání a 1 odebrání
  1. +2
    -1
      packages/lesspass-site/Dockerfile

+ 2
- 1
packages/lesspass-site/Dockerfile Zobrazit soubor

@@ -1,9 +1,10 @@
FROM node:lts AS builder
FROM node:12-alpine AS builder
LABEL maintainer="LessPass <contact@lesspass.com>"
LABEL name="LessPass Frontend"
WORKDIR /opt/frontend
COPY package.json yarn.lock ./
RUN yarn install
RUN yarn global add gulp-cli
COPY . /opt/frontend
RUN yarn build
FROM nginx:alpine


Načítá se…
Zrušit
Uložit