Installing Go In Docker
Installation steps
Step 1: cd into the folder where you want to run the docker container
Step 2: Create a file named "dockerfile" and add the following contents:
FROM golang:1.15-alpine as dev // "dev" is a developer container
WORKDIR /work // All ...
chococandy.hashnode.dev2 min read