mirror of
https://github.com/tornadocash/tornado-relayer
synced 2024-02-02 15:04:06 +01:00
29 lines
609 B
Docker
29 lines
609 B
Docker
FROM node:16-alpine as dev
|
|
|
|
ENV NODE_ENV=development
|
|
|
|
WORKDIR /usr/app
|
|
|
|
COPY yarn.lock .
|
|
COPY package.json .
|
|
RUN apk update && apk add --no-cache g++ make python3 && rm -rf /var/cache/apk/*
|
|
RUN yarn install --network-concurrency 2
|
|
COPY . ./
|
|
|
|
RUN yarn build
|
|
|
|
FROM node:16-alpine as prod
|
|
ENV NODE_ENV=production
|
|
|
|
WORKDIR /app
|
|
|
|
RUN apk update && apk add --no-cache g++ make python3 && rm -rf /var/cache/apk/*
|
|
|
|
COPY --from=dev /usr/app/ /app
|
|
COPY --from=dev /usr/app/package.json /app/
|
|
COPY --from=dev /usr/app/yarn.lock /app/
|
|
|
|
RUN yarn install --network-concurrency 2 && yarn cache clean -f
|
|
|
|
ENTRYPOINT ["yarn"]
|