10 lines
229 B
Docker
10 lines
229 B
Docker
|
FROM golang:1.17
|
||
|
|
||
|
RUN apt-get update
|
||
|
RUN apt-get install -y git python jq curl
|
||
|
|
||
|
RUN curl -sL https://deb.nodesource.com/setup_16.x | bash -
|
||
|
RUN apt-get update && apt-get install -y nodejs
|
||
|
RUN npm install yarn -g
|
||
|
|
||
|
WORKDIR /workdir
|