mirror of
https://github.com/tornadocash/trusted-setup-server.git
synced 2024-11-21 17:36:54 +01:00
15 lines
316 B
Docker
15 lines
316 B
Docker
FROM tornadocash/phase2-bn254:stable as bin
|
|
|
|
FROM node:12-buster
|
|
WORKDIR /app
|
|
|
|
COPY package.json yarn.lock ./
|
|
RUN yarn install && yarn cache clean --force
|
|
COPY . .
|
|
|
|
COPY --from=bin /usr/bin/phase2_verify_contribution /app/server/bin/
|
|
|
|
EXPOSE 3000
|
|
HEALTHCHECK CMD curl -f http://localhost:3000/
|
|
CMD ["yarn", "start"]
|