mirror of
https://github.com/netbirdio/gvisor.git
synced 2026-05-22 17:12:49 -07:00
7 lines
165 B
Docker
7 lines
165 B
Docker
FROM ubuntu:22.04
|
|
|
|
COPY main.go /main.go
|
|
RUN apt-get update && apt-get install -y golang-go && \
|
|
go build -o /usr/bin/profilehelper /main.go && \
|
|
rm -f /main.go
|