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

15 lines
262 B
Docker
Raw Normal View History

2021-02-03 14:06:44 +00:00
FROM node:14.15.0-alpine
WORKDIR /usr/app
COPY public ./public
COPY src ./src
COPY styles ./styles
COPY package.json .
COPY postcss.config.js .
COPY tailwind.config.js .
ENV NEXT_TELEMETRY_DISABLED 1
RUN yarn --no-lockfile && yarn build
2021-02-03 14:21:30 +00:00
CMD ["yarn", "start"]