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

13 lines
179 B

3 years ago
FROM node:14.4-alpine
RUN apk add --no-cache openssl
WORKDIR /usr/src/app
COPY . .
RUN npx yarn install
RUN npx yarn run build
EXPOSE 3000
CMD ["npx", "yarn", "run" ,"start"]