mirror of
https://github.com/criyle/go-sandbox.git
synced 2025-11-04 14:49:53 +08:00
8 lines
128 B
Docker
8 lines
128 B
Docker
FROM golang
|
|
|
|
COPY . /app
|
|
WORKDIR /app/cmd/runprog
|
|
RUN apt update && apt install -y gcc libstdc++6 libseccomp-dev
|
|
|
|
RUN go build
|