mirror of
https://github.com/tornadocash/trusted-setup-server.git
synced 2024-11-21 17:36:54 +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"]
|