We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 40455f3 commit d8ac3e1Copy full SHA for d8ac3e1
Dockerfile
@@ -2,10 +2,14 @@ FROM golang:alpine AS build
2
3
RUN apk add --no-cache -U make git
4
5
+COPY . /src/project
6
+RUN cd /src/project
7
+WORKDIR /src/project
8
+
9
RUN export CGO_ENABLED=0 &&\
10
make &&\
- cp cmd/registry/registry /
-RUN cp etc/registry.sample.conf /registry.conf
11
+ cp cmd/registry/registry /registry &&\
12
+ cp etc/registry.sample.conf /registry.conf
13
14
FROM golang:alpine
15
0 commit comments