mirror of
https://github.com/tornadocash/tornado-root-updater.git
synced 2024-12-04 23:15:05 +01:00
9 lines
127 B
Docker
9 lines
127 B
Docker
FROM node:12
|
|
WORKDIR /app
|
|
|
|
COPY package.json yarn.lock ./
|
|
RUN yarn && yarn cache clean --force
|
|
COPY . .
|
|
|
|
CMD ["yarn", "start"]
|