mirror of
https://github.com/tornadocash/trusted-setup-server.git
synced 2024-11-22 01:46:52 +01:00
11 lines
206 B
Docker
11 lines
206 B
Docker
FROM node:11
|
|
WORKDIR /app
|
|
|
|
COPY package.json package-lock.json ./
|
|
RUN npm install && npm cache clean --force
|
|
COPY . .
|
|
|
|
EXPOSE 3000
|
|
HEALTHCHECK CMD curl -f http://localhost:3000/
|
|
CMD ["npm", "run", "start"]
|