You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
FROM golang:1.15-alpine3.14
RUN apk add bash ca-certificates git gcc g++ libc-dev make
RUN mkdir /tinykv
ADD . /tinykv/
WORKDIR /tinykv
ENV GO111MODULE=on \
GOPROXY=https://goproxy.cn,direct
RUN go mod download
As I searched out the docker hub, and found no results. I think an official docker image is needed, so that we can code just with VScode!
The text was updated successfully, but these errors were encountered: