FROM golang:1.19.3 RUN apt-get update RUN curl -sL https://deb.nodesource.com/setup_10.x | bash - RUN apt-get update && apt-get install -y nodejs WORKDIR /rosalind COPY . . RUN go env -w GOPROXY=direct RUN make release