mirror of
https://github.com/crawlab-team/crawlab.git
synced 2026-01-22 17:31:03 +01:00
9 lines
116 B
Docker
9 lines
116 B
Docker
FROM golang:1.15
|
|
|
|
WORKDIR /app
|
|
ADD ./go.mod /app
|
|
ADD ./go.sum /app
|
|
RUN go mod download
|
|
|
|
CMD ["sh", "./bin/test.sh"]
|