dockerfile changes

This commit is contained in:
Torma Kristóf 2019-10-25 22:41:00 +02:00
parent 387b98a23f
commit fbe5ab92b8
Signed by: tormakris
GPG Key ID: DC83C4F2C41B1047
1 changed files with 3 additions and 3 deletions

View File

@ -3,11 +3,11 @@
# https://hub.docker.com/_/golang
FROM golang:1.13 as builder
# Create and change to the app directory.
WORKDIR /app
RUN go get -u github.com/golang/dep/cmd/dep
# Create and change to the app directory.
WORKDIR /go/src/app
# Retrieve application dependencies.
# This allows the container build to reuse cached dependencies.
COPY go.* ./