Explorar el Código

Add dockerfile.

master
Chris Smith hace 5 años
padre
commit
0fc7b00ddb
Se han modificado 1 ficheros con 10 adiciones y 0 borrados
  1. 10
    0
      Dockerfile

+ 10
- 0
Dockerfile Ver fichero

@@ -0,0 +1,10 @@
1
+FROM golang:alpine
2
+
3
+WORKDIR /go/src/app
4
+COPY . .
5
+
6
+RUN apk add git build-base
7
+
8
+RUN GO111MODULE=on go install -v ./...
9
+
10
+CMD ["dotege"]

Loading…
Cancelar
Guardar