mirror of
https://github.com/minoplhy/chibisafe-netproxy.git
synced 2024-11-22 11:37:08 +00:00
12 lines
107 B
Docker
12 lines
107 B
Docker
|
FROM golang:latest
|
||
|
|
||
|
WORKDIR /app
|
||
|
|
||
|
COPY . .
|
||
|
|
||
|
RUN go mod download
|
||
|
|
||
|
EXPOSE 4040
|
||
|
|
||
|
CMD ["go", "run", "main.go"]
|