build-container/Dockerfile

10 lines
229 B
Docker
Raw Normal View History

2021-11-23 07:23:16 +00:00
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