11 lines
169 B
Text
11 lines
169 B
Text
|
FROM docker.io/golang:alpine
|
||
|
|
||
|
# Install Docker and Docker Compose
|
||
|
RUN apk --no-cache add \
|
||
|
bash \
|
||
|
curl \
|
||
|
docker \
|
||
|
make \
|
||
|
gcc \
|
||
|
libc-dev \
|
||
|
git
|