Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 3 additions & 0 deletions module-2/app/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,9 @@ FROM golang:alpine AS builder
WORKDIR /go/src/app
COPY ./service/ .

RUN echo creating mod file
RUN go mod init

RUN echo Fetching project dependencies
RUN go get -d -v

Expand Down
3 changes: 3 additions & 0 deletions module-3/app/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,9 @@ RUN apk update && apk add --no-cache git
WORKDIR /go/src/app
COPY ./service/ .

RUN echo creating mod file
RUN go mod init

RUN echo Fetching project dependencies
RUN go get -d -v

Expand Down
3 changes: 3 additions & 0 deletions module-4/app/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,9 @@ RUN apk update && apk add --no-cache git
WORKDIR /go/src/app
COPY ./service/ .

RUN echo creating mod file
RUN go mod init

RUN echo Fetching project dependencies
RUN go get -d -v

Expand Down
3 changes: 3 additions & 0 deletions module-5/app/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,9 @@ RUN apk update && apk add --no-cache git
WORKDIR /go/src/app
COPY ./service/ .

RUN echo creating mod file
RUN go mod init

RUN echo Fetching project dependencies
RUN go get -d -v

Expand Down