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-v2/Dockerfile

19 lines
300 B
Docker
Raw Normal View History

FROM node:16.14.2-alpine
WORKDIR /usr/app
COPY package.json \
yarn.lock \
2022-04-21 08:48:53 +00:00
./
RUN yarn --frozen-lockfile
COPY static ./static
COPY src ./src
COPY gatsby*.js \
postcss.config.js \
tailwind.config.js \
2022-04-21 08:48:53 +00:00
./
CMD ["sh", "-c", "yarn build && yarn serve --host 0.0.0.0 -p 9000"]