FROM golang:1.12.4 WORKDIR /zhvav COPY requirements.txt RUN pip install -r requirements.txt COPY main.go CMD ["golang", "./main.go"] EXPOSE 8000