You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
explorer-v2-frontend/Dockerfile

14 lines
210 B

FROM node:16.13-alpine
RUN apk add --no-cache openssl
RUN apk add g++ make py3-pip
WORKDIR /usr/src/app
COPY . .
RUN npx yarn install
RUN npx yarn run build
EXPOSE 3000
CMD ["npx", "yarn", "run" ,"start"]