This repository has been archived on 2022-10-07. You can view files and clone it, but cannot push or open issues or pull requests.
skynet-webportal/packages/dashboard/Dockerfile

17 lines
331 B
Docker

FROM node:15.12.0-alpine
WORKDIR /usr/app
COPY package.json .
ENV NEXT_TELEMETRY_DISABLED 1
RUN yarn --no-lockfile
COPY public ./public
COPY src ./src
COPY styles ./styles
COPY postcss.config.js .
COPY tailwind.config.js .
CMD ["sh", "-c", "env | grep -E 'NEXT_PUBLIC|KRATOS|STRIPE' > .env.local && yarn build && yarn start"]