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
271 B
Docker
Raw Normal View History

2021-02-09 10:34:33 +00:00
FROM node:15.8.0-alpine
2021-02-03 14:06:44 +00:00
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
2021-02-20 14:57:55 +00:00
RUN yarn --no-lockfile
2021-02-20 15:00:16 +00:00
CMD ["sh", "-c", "yarn build;", "yarn start"]