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

16 lines
317 B
Docker
Raw Normal View History

2020-10-30 09:25:37 +00:00
FROM node:14.15.0-alpine
2020-10-13 13:49:51 +00:00
RUN apk add --no-cache autoconf automake libtool gcc make g++ zlib-dev file nasm util-linux
2020-07-30 12:23:49 +00:00
WORKDIR /usr/app
COPY src ./src
COPY static ./static
COPY gatsby-config.js .
COPY package.json .
ENV CYPRESS_INSTALL_BINARY 0
ENV GATSBY_TELEMETRY_DISABLED 1
RUN yarn --no-lockfile
2020-10-13 13:49:51 +00:00
RUN yarn build