7 lines
150 B
Docker
7 lines
150 B
Docker
FROM ubuntu:18.04
|
|
RUN apt-get update && apt-get install -y git golang-go make
|
|
COPY . /src/GingerShrew
|
|
WORKDIR /src/GingerShrew
|
|
RUN make deps
|
|
CMD make
|