mirror of
https://github.com/cupcakearmy/master-thesis.git
synced 2025-09-06 18:50:42 +00:00
Clear History
This commit is contained in:
11
code/images/sidecar/Dockerfile
Normal file
11
code/images/sidecar/Dockerfile
Normal file
@@ -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