mirror of
https://github.com/tornadocash/tornado-root-updater.git
synced 2024-12-04 23:15:05 +01:00
14 lines
343 B
Docker
14 lines
343 B
Docker
|
# syntax=docker/dockerfile:experimental
|
||
|
# export DOCKER_BUILDKIT=1
|
||
|
|
||
|
FROM node:12
|
||
|
WORKDIR /app
|
||
|
|
||
|
RUN mkdir -p -m 0600 ~/.ssh && ssh-keyscan github.com >> ~/.ssh/known_hosts && echo "Host github.com\n\tUser git" > ~/.ssh/config
|
||
|
|
||
|
COPY package.json yarn.lock ./
|
||
|
RUN --mount=type=ssh yarn && yarn cache clean --force
|
||
|
COPY . .
|
||
|
|
||
|
CMD ["yarn", "start"]
|