mirror of https://github.com/Marcusk19/dotctl
add dockerfile for development (#38)
parent
398181ba28
commit
6aadf9c901
@ -0,0 +1,10 @@
|
|||||||
|
FROM golang:1.21.12
|
||||||
|
RUN apt-get update && \
|
||||||
|
apt-get install -y git neovim make
|
||||||
|
WORKDIR /app
|
||||||
|
COPY go.mod go.sum /
|
||||||
|
RUN go mod download
|
||||||
|
COPY . .
|
||||||
|
RUN make install
|
||||||
|
ENTRYPOINT sh
|
||||||
|
|
||||||
Loading…
Reference in New Issue