chore: move test docker files to tests dir

This commit is contained in:
Ben McClelland
2024-09-12 16:15:33 -07:00
parent cf6c1b97d1
commit 220819444f
7 changed files with 5 additions and 5 deletions
+18
View File
@@ -0,0 +1,18 @@
FROM golang:latest
WORKDIR /app
COPY go.mod ./
RUN go mod download
COPY ./ ./
COPY ./tests/certs/* /etc/pki/tls/certs/
ARG IAM_DIR=/tmp/vgw
ARG SETUP_DIR=/tmp/vgw
RUN mkdir -p $IAM_DIR
RUN mkdir -p $SETUP_DIR
RUN go get github.com/githubnemo/CompileDaemon
RUN go install github.com/githubnemo/CompileDaemon