ethereum: install git
Required for properly installing truffle.
This commit is contained in:
parent
784c35e48d
commit
e39469f817
|
@ -1,6 +1,9 @@
|
||||||
# syntax=docker/dockerfile:experimental
|
# syntax=docker/dockerfile:experimental
|
||||||
FROM node:lts-alpine
|
FROM node:lts-alpine
|
||||||
|
|
||||||
|
# npm wants to clone random Git repositories - lovely.
|
||||||
|
RUN apk add git
|
||||||
|
|
||||||
# Run as user, otherwise, npx explodes.
|
# Run as user, otherwise, npx explodes.
|
||||||
USER 1000
|
USER 1000
|
||||||
RUN mkdir -p /home/node/app
|
RUN mkdir -p /home/node/app
|
||||||
|
|
Loading…
Reference in New Issue