Initial commit

This commit is contained in:
Arnaud Delcasse 2021-11-23 08:23:16 +01:00
commit 8247304c02
2 changed files with 18 additions and 0 deletions

10
Dockerfile Normal file
View File

@ -0,0 +1,10 @@
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

8
README.md Normal file
View File

@ -0,0 +1,8 @@
# dev-tools/build-container
COOPGO's build container with usual dependencies
## Based on :
- Golang 1.17
- Node 16.X