Skip to content
Snippets Groups Projects
Commit ab8d952f authored by tgs266's avatar tgs266
Browse files

update dockerfiles

parent fef8678c
No related branches found
No related tags found
No related merge requests found
......@@ -12,6 +12,10 @@ ADD . /app
WORKDIR /app
## we run go build to compile the binary
## executable of our Go program
RUN git config --global user.name "tgsiegel"
RUN git config --global url."https://tgsiegel:bfCyPBR5ZLEYcaxxKMxE@gitlab.cs.umd.edu/".insteadOf https://gitlab.cs.umd.edu/
RUN go env -w GOPRIVATE=gitlab.cs.umd.edu/dawn/*
RUN go build -o main .
## Our start command which kicks off
## our newly created binary executable
......
......@@ -12,6 +12,11 @@ ADD . /app
WORKDIR /app
## we run go build to compile the binary
## executable of our Go program
RUN git config --global user.name "tgsiegel"
RUN git config --global url."https://tgsiegel:bfCyPBR5ZLEYcaxxKMxE@gitlab.cs.umd.edu/".insteadOf https://gitlab.cs.umd.edu/
RUN go env -w GOPRIVATE=gitlab.cs.umd.edu/dawn/*
RUN go build -o main .
## Our start command which kicks off
## our newly created binary executable
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment