mirror of
https://github.com/cupcakearmy/master-thesis.git
synced 2026-05-25 21:55:28 +00:00
Clear History
This commit is contained in:
@@ -0,0 +1,11 @@
|
||||
FROM golang:1.20 as builder
|
||||
WORKDIR /app
|
||||
COPY . .
|
||||
RUN go build
|
||||
|
||||
FROM ubuntu
|
||||
RUN apt-get update && apt-get install -y dnsutils
|
||||
WORKDIR /app
|
||||
COPY --from=builder /app .
|
||||
EXPOSE 42069
|
||||
CMD /app/sidecar
|
||||
Reference in New Issue
Block a user